class ScalametaParser extends AnyRef

Self Type
ScalametaParser
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ScalametaParser
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ScalametaParser(input: Input)(implicit dialect: Dialect)

Type Members

  1. sealed abstract class InfixContext extends AnyRef
  2. class InvalidModCombination[M1 <: Mod, M2 <: Mod] extends AnyRef
  3. trait MacroQuotedIdent extends AnyRef
  4. trait MacroSplicedIdent extends AnyRef
  5. trait PatternContextSensitive extends AnyRef

    Methods which implicitly propagate the context in which they were called: either in a pattern context or not.

    Methods which implicitly propagate the context in which they were called: either in a pattern context or not. Formerly, this was threaded through numerous methods as boolean isPattern.

  6. trait SeqContextSensitive extends PatternContextSensitive

    Methods which implicitly propagate whether the initial call took place in a context where sequences are allowed.

    Methods which implicitly propagate whether the initial call took place in a context where sequences are allowed. Formerly, this was threaded through methods as boolean seqOK.

  7. sealed trait TemplateOwner extends AnyRef

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from ScalametaParser toany2stringadd[ScalametaParser] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ScalametaParser, B)
    Implicit
    This member is added by an implicit conversion from ScalametaParser toArrowAssoc[ScalametaParser] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def accept[T <: Token](implicit arg0: TokenInfo[T]): Unit

    Consume one token of the specified type, or signal an error if it is not there.

  7. def acceptOpt[T <: Token](implicit arg0: TokenInfo[T]): Boolean

    If current token is T consume it.

  8. def acceptStatSep(): Unit
  9. def acceptStatSepOpt(): Unit
  10. def accessModifier(): Mod
  11. final def ahead[T](body: => T): T

    Scoping operator used to temporarily look into the future.

    Scoping operator used to temporarily look into the future. Backs up token iterator before evaluating a block and restores it after.

    Annotations
    @inline()
  12. def annots(skipNewLines: Boolean, allowArgss: Boolean = true): collection.immutable.List[Annot]
  13. def argumentExpr(location: Location): Term
  14. def argumentExprs(location: Location = NoStat): collection.immutable.List[Term]
  15. def argumentExprsOrPrefixExpr(location: Location): collection.immutable.List[Term]
  16. def argumentExprsWithUsing(location: Location = NoStat): (collection.immutable.List[Term], Boolean)
  17. def argumentPattern(): Pat
  18. def argumentPatterns(): collection.immutable.List[Pat]
  19. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  20. def atCurPos[T <: Tree](body: => T): T
  21. def atCurPosNext[T <: Tree](body: => T): T
  22. def atPos[T <: Tree](pos: Int)(body: => T): T
  23. def atPos[T <: Tree](start: Int, end: EndPos)(body: T): T
    Annotations
    @inline()
  24. def atPos[T <: Tree](start: StartPos, end: EndPos)(body: => T): T
  25. def atPos[T <: Tree](token: Token)(body: => T): T
  26. def atPosTry[T <: Tree](start: StartPos, end: EndPos)(body: => Try[T]): Try[T]
  27. def atPosWithBody[T <: Tree](startTokenPos: Int, body: T, endPos: Int): T
  28. def auto: AutoPos
  29. def autoEndPos[T <: Tree](start: StartPos)(body: => T): T
    Annotations
    @inline()
  30. def autoEndPos[T <: Tree](start: Int)(body: => T): T
    Annotations
    @inline()
  31. def autoPos[T <: Tree](body: => T): T
  32. def autoPosTry[T <: Tree](body: => Try[T]): Try[T]
  33. def batchSource(statpf: PartialFunction[Token, Stat] = topStat): Source
  34. def block(isBlockOptional: Boolean = false): Term
  35. def blockExpr(isBlockOptional: Boolean = false): Term
  36. def blockStatSeq(): collection.immutable.List[Stat]
  37. def bound[T <: Token](implicit arg0: TokenInfo[T]): Option[Type]
  38. def caseClause(forceSingleExpr: Boolean = false): Case
  39. def caseClauses(): collection.immutable.List[Case]
  40. def caseClausesIfAny(): Option[collection.immutable.List[Case]]
  41. def checkAssoc(op: Term.Name, leftAssoc: Boolean): Unit
  42. def classDef(mods: collection.immutable.List[Mod]): Class
  43. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  44. final def commaSeparated[T <: Tree](part: => T)(implicit arg0: AstInfo[T]): collection.immutable.List[T]
    Annotations
    @inline()
  45. def condExpr(): Term
  46. def condExprInParens[T <: Token](implicit arg0: TokenInfo[T]): Term
  47. def constrInternal(): (Init, collection.immutable.List[Stat])
  48. def constructorAnnots(): collection.immutable.List[Annot]
  49. def ctorModifiers(): Option[Mod]
  50. def defOrDclOrSecondaryCtor(mods: collection.immutable.List[Mod], enumCaseAllowed: Boolean = false, secondaryConstructorAllowed: Boolean = false): Stat
  51. def derivesClasses(): collection.immutable.List[Type]
  52. final def dropAnyBraces[T](body: => T): T
    Annotations
    @inline()
  53. def ellipsis[T <: Tree](rank: Int, astInfo: AstInfo[T], extraSkip: => Unit = {})(implicit arg0: AstInfo[T]): T
  54. def endMarker(): Stat
  55. def ensureEarlyDef(tree: Stat): Stat
  56. def ensuring(cond: (ScalametaParser) => Boolean, msg: => Any): ScalametaParser
    Implicit
    This member is added by an implicit conversion from ScalametaParser toEnsuring[ScalametaParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  57. def ensuring(cond: (ScalametaParser) => Boolean): ScalametaParser
    Implicit
    This member is added by an implicit conversion from ScalametaParser toEnsuring[ScalametaParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  58. def ensuring(cond: Boolean, msg: => Any): ScalametaParser
    Implicit
    This member is added by an implicit conversion from ScalametaParser toEnsuring[ScalametaParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  59. def ensuring(cond: Boolean): ScalametaParser
    Implicit
    This member is added by an implicit conversion from ScalametaParser toEnsuring[ScalametaParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  60. def entryPointAmmonite(): MultiSource
  61. def entrypointCase(): Case
  62. def entrypointCtor(): Ctor
  63. def entrypointEnumerator(): Enumerator
  64. def entrypointExpr(): Term
  65. def entrypointImportee(): Importee
  66. def entrypointImporter(): Importer
  67. def entrypointInit(): Init
  68. def entrypointModifier(): Mod
  69. def entrypointPattern(): Pat
  70. def entrypointSelf(): Self
  71. def entrypointSource(): Source
  72. def entrypointStat(): Stat
  73. def entrypointTemplate(): Template
  74. def entrypointTermParam(): Param
  75. def entrypointType(): Type
  76. def entrypointTypeParam(): Param
  77. def enumCaseDef(mods: collection.immutable.List[Mod]): Stat
  78. def enumDef(mods: collection.immutable.List[Mod]): Enum
  79. def enumRepeatedCaseDef(mods: collection.immutable.List[Mod]): RepeatedEnumCase
  80. def enumSingleCaseDef(mods: collection.immutable.List[Mod]): EnumCase
  81. def enumerator(isFirst: Boolean, allowNestedIf: Boolean = true): collection.immutable.List[Enumerator]
  82. def enumerators(): collection.immutable.List[Enumerator]
  83. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  84. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  85. def existentialStats(): collection.immutable.List[Stat]
  86. def exportStmt(): Stat
  87. def expr(location: Location, allowRepeated: Boolean): Term
  88. def expr(): Term
  89. def exprSimpleType(): Type
  90. def exprTypeArgs(): collection.immutable.List[Type]
  91. def extensionGroupDecl(mods: collection.immutable.List[Mod]): ExtensionGroup
  92. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  93. def followedByToken[T <: Token](implicit arg0: TokenInfo[T]): Boolean
  94. def funDefOrDclOrExtensionOrSecondaryCtor(mods: collection.immutable.List[Mod]): Stat
  95. def funDefRest(mods: collection.immutable.List[Mod]): Stat
  96. def generator(eqOK: Boolean, allowNestedIf: Boolean = true): collection.immutable.List[Enumerator]
  97. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  98. def guard(): Option[Term]
  99. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  100. def ifClause(mods: collection.immutable.List[Mod] = Nil): If
  101. def implicitClosure(location: Location): Term.Function
  102. def importStmt(): Import
  103. def importWildcardOrName(): Importee
  104. def importee(): Importee
  105. def importeeRename(from: Name): Importee
  106. def importees(): collection.immutable.List[Importee]
  107. def importer(): Importer
  108. var in: TokenIterator
  109. final def inBraces[T](body: => T): T
    Annotations
    @inline()
  110. final def inBracesOr[T](body: => T, alt: => T): T
    Annotations
    @inline()
  111. final def inBracesOrNil[T](body: => collection.immutable.List[T]): collection.immutable.List[T]
    Annotations
    @inline()
  112. final def inBrackets[T](body: => T): T
    Annotations
    @inline()
  113. final def inParens[T](body: => T): T
    Annotations
    @inline()
  114. def inParensOrTupleOrUnitExpr(allowRepeated: Boolean): Term
  115. final def indented[T](body: => T): T
    Annotations
    @inline()
  116. def init(): Init
  117. def initInsideAnnotation(allowArgss: Boolean): Init
  118. def initInsideConstructor(): Init
  119. def initInsideTemplate(): Init
  120. def initRest(typeParser: => Type, allowArgss: Boolean, allowBraces: Boolean): Init
  121. def inlineMatchClause(inlineMods: collection.immutable.List[Mod]): Match

    Deals with Scala 3 concept of

    Deals with Scala 3 concept of

    inline x match { ...

    . Since matches can also be chained in Scala 3 we need to create the Match first and only then add the the inline modifier.

    inline x match { ... }}} Scala 3 we need to create the Match first and only then add the the inline modifier.

  122. implicit def intToIndexPos(index: Int): Pos
  123. def interpolate[Ctx <: Tree, Ret <: Tree](arg: () => Ctx, result: (Term.Name, collection.immutable.List[Lit], collection.immutable.List[Ctx]) => Ret): Ret
  124. def interpolatePat(): Interpolate
  125. def interpolateTerm(): Interpolate
  126. def isAfterOptNewLine[T](implicit classifier: Classifier[Token, T]): Boolean
  127. def isAmpersand: Boolean
  128. def isBackquoted: Boolean
  129. def isBar: Boolean
  130. def isColonEol(token: Token): Boolean
  131. def isColonWildcardStar: Boolean
  132. def isIdent: Boolean
  133. def isIdentAnd(pred: (String) => Boolean): Boolean
  134. def isIdentExcept(except: String): Boolean
  135. def isIdentOf(name: String): Boolean
  136. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  137. def isSpliceFollowedBy(check: => Boolean): Boolean
  138. def isStar: Boolean
  139. def isStarWildcard(token: Token): Boolean
  140. def isStarWildcard: Boolean
  141. def isUnaryOp: Boolean
  142. def isVarargStarParam(allowRepeated: Boolean): Boolean
  143. def literal(isNegated: Boolean = false): Lit
  144. def localDef(implicitMod: Option[Implicit]): Stat
  145. def localModifiers(): collection.immutable.List[Mod]
  146. def macroQuote(): Term
  147. def macroQuotedIdent(): Term
  148. def macroSplice(): Term
  149. def macroSplicedIdent(): Term
  150. def makeTuple[T <: Tree](body: collection.immutable.List[T], zero: () => T, tuple: (collection.immutable.List[T]) => T): T
  151. def makeTupleTerm(body: collection.immutable.List[Term]): Term
  152. def makeTupleType(body: collection.immutable.List[Type]): Type
  153. def matchClause(t: Term): Match
  154. def mixinQualifier(): Name
  155. def modifier(): Mod
  156. def modifiers(isLocal: Boolean = false, isParams: Boolean = false): collection.immutable.List[Mod]
  157. implicit def modsToPos(mods: collection.immutable.List[Mod]): Pos
  158. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  159. def newLineOpt(): Unit
    Annotations
    @inline()
  160. def newLineOptWhenFollowedBy[T](implicit classifier: Classifier[Token, T]): Unit
  161. def newLineOptWhenFollowedBySignificantIndentationAnd(cond: (Token) => Boolean): Unit
  162. def newLinesOpt(): Unit
    Annotations
    @inline()
  163. def next(): Unit
  164. def nextOnce(): Unit
  165. def nextThrice(): Unit
  166. def nextTwice(): Unit
  167. def nonLocalDefOrDcl(enumCaseAllowed: Boolean = false, secondaryConstructorAllowed: Boolean = false): Stat
  168. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  169. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  170. def objectDef(mods: collection.immutable.List[Mod]): Object
  171. def onlyAcceptMod[M <: Mod, T <: Token](mods: collection.immutable.List[Mod], errorMsg: String)(implicit arg0: ClassTag[M], arg1: TokenInfo[T], classifier: Classifier[Mod, M]): Unit
  172. def onlyAllowedMods(mods: collection.immutable.List[Mod], matchers: collection.immutable.List[(Mod) => Boolean], culprit: String): Unit
  173. def onlyAllowedMods[M1 <: Mod, M2 <: Mod](mods: collection.immutable.List[Mod], culprit: String)(implicit classifier1: Classifier[Mod, M1], classifier2: Classifier[Mod, M2]): Unit
  174. implicit def optionTreeToPos(tree: Option[Tree]): Pos
  175. def packageDef(statpf: PartialFunction[Token, Stat]): Pkg
  176. def packageObjectDef(): Object
  177. def packageOrPackageObjectDef(statpf: PartialFunction[Token, Stat]): Stat
  178. def param(ownerIsCase: Boolean, ownerIsType: Boolean, isImplicit: Boolean, isUsing: Boolean): Param
  179. def paramClauses(ownerIsType: Boolean, ownerIsCase: Boolean = false): collection.immutable.List[collection.immutable.List[Param]]
  180. def paramType(): Type
  181. def parseAmmonite(): MultiSource
  182. def parseCase(): Case
  183. def parseCtor(): Ctor
  184. def parseEnumerator(): Enumerator
  185. def parseImportee(): Importee
  186. def parseImporter(): Importer
  187. def parseInit(): Init
  188. def parseMod(): Mod
  189. def parsePat(): Pat
  190. def parseRule[T <: Tree](rule: => T): T
  191. def parseRule[T <: Tree](rule: (ScalametaParser.this.type) => T): T
  192. def parseSelf(): Self
  193. def parseSource(): Source
  194. def parseStat(): Stat
  195. def parseTemplate(): Template
  196. def parseTerm(): Term
  197. def parseTermParam(): Param
  198. def parseType(): Type
  199. def parseTypeParam(): Param
  200. def parseUnquotePat(): Pat
  201. def parseUnquoteTerm(): Term
  202. def patDefOrDcl(mods: collection.immutable.List[Mod]): Stat
  203. def path(thisOK: Boolean = true): Term.Ref
  204. def pattern(): Pat

    Default entry points into some pattern contexts.

  205. def patternTyp(): Type
  206. def patternTypeArgs(): collection.immutable.List[Type]
  207. def polyFunction(): PolyFunction
  208. def postfixExpr(allowRepeated: Boolean, location: Location = NoStat): Term
  209. def prefixExpr(allowRepeated: Boolean): Term
  210. def primaryCtor(owner: TemplateOwner): Primary
  211. def qualId(): Term.Ref
  212. def quasiquoteCase(): Case
  213. def quasiquoteCtor(): Ctor
  214. def quasiquoteEnumerator(): Enumerator
  215. def quasiquoteExpr(): Term
  216. def quasiquoteImportee(): Importee
  217. def quasiquoteImporter(): Importer
  218. def quasiquoteInit(): Init
  219. def quasiquoteModifier(): Mod
  220. def quasiquotePattern(): Pat
  221. def quasiquoteSelf(): Self
  222. def quasiquoteSource(): Source
  223. def quasiquoteStat(): Stat
  224. def quasiquoteTemplate(): Template
  225. def quasiquoteTermParam(): Param
  226. def quasiquoteType(): Type
  227. def quasiquoteTypeParam(): Param
  228. def refineStat(): Option[Stat]
  229. def refineStatSeq(): collection.immutable.List[Stat]
  230. def rejectMod[M <: Mod](mods: collection.immutable.List[Mod], errorMsg: String)(implicit classifier: Classifier[Mod, M], tag: ClassTag[M]): Unit
  231. def rejectModCombination[M1 <: Mod, M2 <: Mod](mods: collection.immutable.List[Mod], culpritOpt: Option[String] = None)(implicit invalidMod: InvalidModCombination[M1, M2], classifier1: Classifier[Mod, M1], tag1: ClassTag[M1], classifier2: Classifier[Mod, M2], tag2: ClassTag[M2]): Unit
  232. lazy val reporter: Reporter
  233. def secondaryCtor(mods: collection.immutable.List[Mod]): Secondary
  234. def secondaryCtorRest(mods: collection.immutable.List[Mod], name: Name, paramss: collection.immutable.List[collection.immutable.List[Param]]): Secondary
  235. def selector(t: Term): Select
  236. def selectors(t: Term): Term.Ref
  237. def self(): Self
  238. def seqPatterns(): collection.immutable.List[Pat]
  239. def simpleExpr(allowRepeated: Boolean): Term
  240. def source(): Source
  241. def stableId(): Term.Ref
  242. def startInfixType(): Type
  243. def startModType(): Type
  244. def stat(body: => Stat): Stat
  245. def statSeq[T <: Tree](statpf: PartialFunction[Token, T], errorMsg: String = "illegal start of definition")(implicit arg0: AstInfo[T]): collection.immutable.List[T]
  246. def summonClassifierFunc[A, B](implicit v: Classifier[A, B]): (A) => Boolean
  247. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  248. def syntaxErrorExpected[T <: Token](implicit arg0: TokenInfo[T]): Nothing
  249. def template(afterExtend: Boolean = false, enumCaseAllowed: Boolean, secondaryConstructorAllowed: Boolean): Template
  250. def template(edefs: collection.immutable.List[Stat], parents: collection.immutable.List[Init], enumCaseAllowed: Boolean, secondaryConstructorAllowed: Boolean): Template
  251. def templateBody(enumCaseAllowed: Boolean = false, secondaryConstructorAllowed: Boolean = false): (Self, collection.immutable.List[Stat])
  252. def templateBodyOpt(parenMeansSyntaxError: Boolean, enumCaseAllowed: Boolean = false, secondaryConstructorAllowed: Boolean = false): (Self, collection.immutable.List[Stat])
  253. def templateOpt(owner: TemplateOwner): Template
  254. def templateParents(afterExtend: Boolean = false): collection.immutable.List[Init]
  255. def templateStatSeq(enumCaseAllowed: Boolean = false, secondaryConstructorAllowed: Boolean = false): (Self, collection.immutable.List[Stat])
  256. def templateStats(enumCaseAllowed: Boolean = false, secondaryConstructorAllowed: Boolean = false): collection.immutable.List[Stat]
  257. def termName(advance: Boolean = true): Term.Name
  258. def tmplDef(mods: collection.immutable.List[Mod]): Stat
  259. def toString(): String
    Definition Classes
    AnyRef → Any
  260. def token: Token
  261. final def tokenSeparated[Sep <: Token, T <: Tree](sepFirst: Boolean, part: => T)(implicit arg0: TokenInfo[Sep], arg1: AstInfo[T]): collection.immutable.List[T]
  262. implicit def tokenToTokenPos(token: Token): Pos
  263. def topLevelTmplDef: Stat

    Hook for IDE, for top-level classes/objects.

  264. def topStat: PartialFunction[Token, Stat]
  265. def tparamModifiers(): Option[Mod]
  266. def traitDef(mods: collection.immutable.List[Mod]): Trait
  267. implicit def treeToTreePos(tree: Tree): Pos
  268. def typ(): Type

    These are default entry points into the pattern context sensitive methods: they are all initiated from non-pattern context.

  269. def typeBounds(): Bounds
  270. def typeDefOrDcl(mods: collection.immutable.List[Mod]): Member.Type with Stat
  271. def typeIndentedOpt(): Type
  272. def typeName(advance: Boolean = true): Type.Name
  273. def typeOrInfixType(location: Location): Type
  274. def typeParam(ownerIsType: Boolean, ctxBoundsAllowed: Boolean, allowUnderscore: Boolean = true): Param
  275. def typeParamClauseOpt(ownerIsType: Boolean, ctxBoundsAllowed: Boolean, allowUnderscore: Boolean = true): collection.immutable.List[Param]
  276. def typedOpt(): Option[Type]
  277. def unquote[T <: Tree](implicit arg0: AstInfo[T]): T
  278. def unquote[T <: Tree](advance: Boolean = true)(implicit arg0: AstInfo[T]): T
  279. def unquoteExpr(): Term
  280. def unquotePattern(): Pat
  281. def unquoteXmlExpr(): Term
  282. def unquoteXmlPattern(): Pat
  283. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  284. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  285. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  286. def xmlLiteralPattern(): Pat
  287. def xmlPat(): Xml
  288. def xmlSeqPatterns(): collection.immutable.List[Pat]
  289. def xmlTerm(): Xml
  290. case object AutoPos extends Pos with Product with Serializable
  291. case object EndPosPreOutdent extends EndPos with Product with Serializable
  292. implicit object InvalidCaseImplicit extends InvalidModCombination[Mod.Case, Implicit]
  293. implicit object InvalidFinalAbstract extends InvalidModCombination[Final, Abstract]
  294. implicit object InvalidFinalSealed extends InvalidModCombination[Final, Sealed]
  295. implicit object InvalidOpenFinal extends InvalidModCombination[Open, Final]
  296. implicit object InvalidOpenSealed extends InvalidModCombination[Open, Sealed]
  297. implicit object InvalidOverrideAbstract extends InvalidModCombination[Override, Abstract]
  298. implicit object InvalidPrivateProtected extends InvalidModCombination[Private, Protected]
  299. implicit object InvalidProtectedPrivate extends InvalidModCombination[Protected, Private]
  300. object MacroQuotedIdent
  301. object MacroSplicedIdent
  302. object OwnedByCaseClass extends TemplateOwner
  303. object OwnedByClass extends TemplateOwner
  304. object OwnedByEnum extends TemplateOwner
  305. object OwnedByObject extends TemplateOwner
  306. object OwnedByTrait extends TemplateOwner
  307. case object StartPosPrev extends StartPos with Product with Serializable
  308. object noSeq extends SeqContextSensitive

    The implementation for parsing inside of patterns at points where sequences are disallowed.

  309. object outPattern extends PatternContextSensitive

    The implementation of the context sensitive methods for parsing outside of patterns.

  310. implicit object patInfixContext extends InfixContext
  311. object seqOK extends SeqContextSensitive

    The implementation for parsing inside of patterns at points where sequences are allowed.

  312. object termInfixContext extends InfixContext
  313. object xmlSeqOK extends SeqContextSensitive

    For use from xml pattern, where sequence is allowed and encouraged.

Deprecated Value Members

  1. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ScalametaParser toStringFormat[ScalametaParser] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  2. def [B](y: B): (ScalametaParser, B)
    Implicit
    This member is added by an implicit conversion from ScalametaParser toArrowAssoc[ScalametaParser] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromScalametaParser to any2stringadd[ScalametaParser]

Inherited by implicit conversion StringFormat fromScalametaParser to StringFormat[ScalametaParser]

Inherited by implicit conversion Ensuring fromScalametaParser to Ensuring[ScalametaParser]

Inherited by implicit conversion ArrowAssoc fromScalametaParser to ArrowAssoc[ScalametaParser]

Ungrouped