Packages

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. All

Instance Constructors

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

Type Members

  1. trait CanEndStat extends AnyRef
  2. trait CantStartStat extends AnyRef
  3. trait CaseDefEnd extends AnyRef
  4. trait CaseIntro extends AnyRef
  5. trait CloseDelim extends AnyRef
  6. trait DclIntro extends AnyRef
  7. trait DefIntro extends AnyRef
  8. trait ExprIntro extends AnyRef
  9. case class IndexPos(index: Int) extends Pos with Product with Serializable
  10. sealed abstract class InfixContext extends AnyRef
  11. trait InlineSoftModifier extends AnyRef
  12. class InvalidModCombination[M1 <: Mod, M2 <: Mod] extends AnyRef
  13. trait LineEnd extends AnyRef
  14. trait Literal extends AnyRef
  15. trait LocalModifier extends AnyRef
  16. trait Modifier extends AnyRef
  17. trait NonlocalModifier extends AnyRef
  18. trait NumericLiteral extends AnyRef
  19. 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.

  20. sealed trait Pos extends AnyRef
  21. 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.

  22. trait StatSep extends AnyRef
  23. trait StatSeqEnd extends AnyRef
  24. trait TemplateIntro extends AnyRef
  25. sealed trait TemplateOwner extends AnyRef
  26. trait TokenIterator extends Iterator[Token]
  27. case class TokenPos(token: Token) extends Pos with Product with Serializable
  28. case class TreePos(tree: Tree) extends Pos with Product with Serializable
  29. trait Trivia extends AnyRef
  30. trait TypeIntro extends AnyRef
  31. trait Whitespace extends AnyRef
  32. implicit class XtensionTokenIndex 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 to any2stringadd[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 to ArrowAssoc[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]): Unit

    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(): Term
  14. def argumentExprs(): collection.immutable.List[Term]
  15. def argumentExprsOrPrefixExpr(): collection.immutable.List[Term]
  16. def argumentExprsWithUsing(): (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 atPos[T <: Tree](start: Pos, end: Pos)(body: ⇒ T): T
  21. def auto: AutoPos.type
  22. def autoPos[T <: Tree](body: ⇒ T): T
  23. def batchSource(): Source
  24. def block(): Term
  25. def blockExpr(): Term
  26. def blockStatSeq(): collection.immutable.List[Stat]
  27. def bound[T <: Token](implicit arg0: TokenInfo[T]): Option[Type]
  28. def caseClause(): Case
  29. def caseClauses(): collection.immutable.List[Case]
  30. def checkAssoc(op: Term.Name, leftAssoc: Boolean): Unit
  31. def classDef(mods: collection.immutable.List[Mod]): Class
  32. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  33. final def commaSeparated[T <: Tree](part: ⇒ T)(implicit arg0: AstInfo[T]): collection.immutable.List[T]
    Annotations
    @inline()
  34. def condExpr(): Term
  35. def constrBlock(): (Init, collection.immutable.List[Stat])
  36. def constrExpr(): (Init, collection.immutable.List[Stat])
  37. def constructorAnnots(): collection.immutable.List[Annot]
  38. def ctorModifiers(): Option[Mod]
  39. implicit val currentDialect: Dialect
  40. def defOrDclOrSecondaryCtor(mods: collection.immutable.List[Mod]): Stat
  41. final def dropAnyBraces[T](body: ⇒ T): T
    Annotations
    @inline()
  42. def dropTrivialBlock(term: Term): Term
  43. def ellipsis[T <: Tree](rank: Int, astInfo: AstInfo[T], extraSkip: ⇒ Unit = {})(implicit arg0: AstInfo[T]): T
  44. def ensureEarlyDef(tree: Stat): Stat
  45. def ensuring(cond: (ScalametaParser) ⇒ Boolean, msg: ⇒ Any): ScalametaParser
    Implicit
    This member is added by an implicit conversion from ScalametaParser to Ensuring[ScalametaParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  46. def ensuring(cond: (ScalametaParser) ⇒ Boolean): ScalametaParser
    Implicit
    This member is added by an implicit conversion from ScalametaParser to Ensuring[ScalametaParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  47. def ensuring(cond: Boolean, msg: ⇒ Any): ScalametaParser
    Implicit
    This member is added by an implicit conversion from ScalametaParser to Ensuring[ScalametaParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  48. def ensuring(cond: Boolean): ScalametaParser
    Implicit
    This member is added by an implicit conversion from ScalametaParser to Ensuring[ScalametaParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  49. def entrypointCase(): Case
  50. def entrypointCtor(): Ctor
  51. def entrypointEnumerator(): Enumerator
  52. def entrypointExpr(): Term
  53. def entrypointImportee(): Importee
  54. def entrypointImporter(): Importer
  55. def entrypointInit(): Init
  56. def entrypointModifier(): Mod
  57. def entrypointPattern(): Pat
  58. def entrypointSelf(): Self
  59. def entrypointSource(): Source
  60. def entrypointStat(): Stat
  61. def entrypointTemplate(): Template
  62. def entrypointTermParam(): Param
  63. def entrypointType(): Type
  64. def entrypointTypeParam(): Param
  65. def enumCaseDef(mods: collection.immutable.List[Mod]): Stat
  66. def enumDef(mods: collection.immutable.List[Mod]): Enum
  67. def enumRepeatedCaseDef(mods: collection.immutable.List[Mod]): RepeatedEnumCase
  68. def enumSingleCaseDef(mods: collection.immutable.List[Mod]): EnumCase
  69. def enumerator(isFirst: Boolean, allowNestedIf: Boolean = true): collection.immutable.List[Enumerator]
  70. def enumerators(): collection.immutable.List[Enumerator]
  71. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  72. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  73. def existentialStats(): collection.immutable.List[Stat]
  74. def expr(location: Location, allowRepeated: Boolean): Term
  75. def expr(): Term
  76. def exprSimpleType(): Type
  77. def exprTypeArgs(): collection.immutable.List[Type]
  78. def extMethod(mods: collection.immutable.List[Mod]): Stat
  79. def extensionGroupDecl(mods: collection.immutable.List[Mod]): ExtensionGroup
  80. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  81. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ScalametaParser to StringFormat[ScalametaParser] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  82. def funDefExtRest(mods: collection.immutable.List[Mod]): Stat
  83. def funDefOrDclOrExtensionOrSecondaryCtor(mods: collection.immutable.List[Mod]): Stat
  84. def funDefRest(mods: collection.immutable.List[Mod]): Stat
  85. def generator(eqOK: Boolean, allowNestedIf: Boolean = true): collection.immutable.List[Enumerator]
  86. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  87. def guard(): Option[Term]
  88. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  89. def implicitClosure(location: Location): Term.Function
  90. def importStmt(): Import
  91. def importWildcardOrName(): Importee
  92. def importee(): Importee
  93. def importees(): collection.immutable.List[Importee]
  94. def importer(): Importer
  95. var in: TokenIterator
  96. final def inBraces[T](body: ⇒ T): T
    Annotations
    @inline()
  97. final def inBracesOrError[T](body: ⇒ T, alt: T): T
    Annotations
    @inline()
  98. final def inBracesOrNil[T](body: ⇒ collection.immutable.List[T]): collection.immutable.List[T]
    Annotations
    @inline()
  99. final def inBracesOrUnit[T](body: ⇒ Term): Term
    Annotations
    @inline()
  100. final def inBrackets[T](body: ⇒ T): T
    Annotations
    @inline()
  101. final def inParens[T](body: ⇒ T): T

    Methods inParensOrError and similar take a second argument which, should the next token not be the expected opener (e.g.

    Methods inParensOrError and similar take a second argument which, should the next token not be the expected opener (e.g. token.LeftParen) will be returned instead of the contents of the groupers. However in all cases accept[LeftParen] will be called, so a parse error will still result. If the grouping is optional, token should be tested before calling these methods.

    Annotations
    @inline()
  102. final def inParensOrError[T](body: ⇒ T, alt: T): T
    Annotations
    @inline()
  103. final def inParensOrNil[T](body: ⇒ collection.immutable.List[T]): collection.immutable.List[T]
    Annotations
    @inline()
  104. def inParensOrTupleOrUnit(location: Location, allowRepeated: Boolean): Term
  105. final def inParensOrUnit[T, Ret >: Lit](body: ⇒ Ret): Ret
    Annotations
    @inline()
  106. def initInsideAnnotation(allowArgss: Boolean): Init
  107. def initInsideConstructor(): Init
  108. def initInsideTemplate(): Init
  109. def initRest(typeParser: () ⇒ Type, allowArgss: Boolean, allowBraces: Boolean): Init
  110. implicit def intToIndexPos(index: Int): IndexPos
  111. def interpolate[Ctx <: Tree, Ret <: Tree](arg: () ⇒ Ctx, result: (Term.Name, collection.immutable.List[Lit], collection.immutable.List[Ctx]) ⇒ Ret): Ret
  112. def interpolatePat(): Interpolate
  113. def interpolateTerm(): Interpolate
  114. def isAmpersand: Boolean
  115. def isBackquoted: Boolean
  116. def isBar: Boolean
  117. def isColonWildcardStar: Boolean
  118. def isIdent: Boolean
  119. def isIdentAnd(token: Token, pred: (String) ⇒ Boolean): Boolean
  120. def isIdentAnd(pred: (String) ⇒ Boolean): Boolean
  121. def isIdentExcept(except: String): Boolean
  122. def isIdentOf(name: String): Boolean
  123. def isInlineSoftKw(token: Token): Boolean
  124. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  125. def isSoftKw(token: Token, skw: SoftKeyword): Boolean
  126. def isSpliceFollowedBy(check: ⇒ Boolean): Boolean
  127. def isStar: Boolean
  128. def isUnaryOp: Boolean
  129. def literal(isNegated: Boolean = false): Lit
  130. def localDef(implicitMod: Option[Implicit]): Stat
  131. def localModifiers(): collection.immutable.List[Mod]
  132. def macroQuote(): Term
  133. def macroQuotedIdent(): Term
  134. def macroSplice(): Term
  135. def macroSplicedIdent(): Term
  136. def makeTuple[T <: Tree](body: collection.immutable.List[T], zero: () ⇒ T, tuple: (collection.immutable.List[T]) ⇒ T): T
  137. def makeTupleTerm(body: collection.immutable.List[Term]): Term
  138. def makeTupleType(body: collection.immutable.List[Type]): Type
  139. def methodParamModifiers(): collection.immutable.List[Mod]
  140. def mixinQualifier(): Name
  141. def modifier(): Mod
  142. def modifiers(isLocal: Boolean = false, isTparam: Boolean = false): collection.immutable.List[Mod]
  143. implicit def modsToPos(mods: collection.immutable.List[Mod]): Pos
  144. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  145. def newLineOpt(): Unit
  146. def newLineOptWhenFollowedBy[T <: Token](implicit arg0: TokenInfo[T]): Unit
  147. def newLineOptWhenFollowing(p: (Token) ⇒ Boolean): Unit
  148. def newLinesOpt(): Unit
  149. def next(): Token
  150. def nextOnce(): Token
  151. def nextThrice(): Token
  152. def nextTwice(): Token
  153. def nonLocalDefOrDcl(): Stat
  154. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  155. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  156. def objectDef(mods: collection.immutable.List[Mod]): Object
  157. def onlyAcceptMod[M <: Mod, T <: Token](mods: collection.immutable.List[Mod], errorMsg: String)(implicit classifier: Classifier[Mod, M], tag: ClassTag[M], tokenInfo: TokenInfo[T]): Unit
  158. def onlyAllowedMods[M1 <: Mod, M2 <: Mod](mods: collection.immutable.List[Mod], culprit: String)(implicit classifier1: Classifier[Mod, M1], tag1: ClassTag[M1], classifier2: Classifier[Mod, M2], tag2: ClassTag[M2]): Unit
  159. implicit def optionTreeToPos(tree: Option[Tree]): Pos
  160. def packageDef(): Pkg
  161. def packageObjectDef(): Object
  162. def packageOrPackageObjectDef(): Stat
  163. def param(ownerIsCase: Boolean, ownerIsType: Boolean, isImplicit: Boolean, isUsing: Boolean): Param
  164. def paramClauses(ownerIsType: Boolean, ownerIsCase: Boolean = false): collection.immutable.List[collection.immutable.List[Param]]
  165. def paramType(): Type
  166. def parseCase(): Case
  167. def parseCtor(): Ctor
  168. def parseEnumerator(): Enumerator
  169. def parseImportee(): Importee
  170. def parseImporter(): Importer
  171. def parseInit(): Init
  172. def parseMod(): Mod
  173. def parsePat(): Pat
  174. def parseRule[T <: Tree](rule: (ScalametaParser.this.type) ⇒ T): T
  175. def parseSelf(): Self
  176. def parseSource(): Source
  177. def parseStat(): Stat
  178. def parseTemplate(): Template
  179. def parseTerm(): Term
  180. def parseTermParam(): Param
  181. def parseType(): Type
  182. def parseTypeParam(): Param
  183. def parseUnquotePat(): Pat
  184. def parseUnquoteTerm(): Term
  185. lazy val parserTokenPositions: Array[Int]
  186. lazy val parserTokens: Tokens
  187. def patDefOrDcl(mods: collection.immutable.List[Mod]): Stat
  188. def path(thisOK: Boolean = true): Term.Ref
  189. def pattern(): Pat

    Default entry points into some pattern contexts.

  190. def patternTyp(): Type
  191. def patternTypeArgs(): collection.immutable.List[Type]
  192. def postfixExpr(allowRepeated: Boolean): Term
  193. def prefixExpr(allowRepeated: Boolean): Term
  194. def primaryCtor(owner: TemplateOwner): Primary
  195. def qualId(): Term.Ref
  196. def quasiquoteCase(): Case
  197. def quasiquoteCtor(): Ctor
  198. def quasiquoteEnumerator(): Enumerator
  199. def quasiquoteExpr(): Term
  200. def quasiquoteImportee(): Importee
  201. def quasiquoteImporter(): Importer
  202. def quasiquoteInit(): Init
  203. def quasiquoteModifier(): Mod
  204. def quasiquotePattern(): Pat
  205. def quasiquoteSelf(): Self
  206. def quasiquoteSource(): Source
  207. def quasiquoteStat(): Stat
  208. def quasiquoteTemplate(): Template
  209. def quasiquoteTermParam(): Param
  210. def quasiquoteType(): Type
  211. def quasiquoteTypeParam(): Param
  212. def refineStat(): Option[Stat]
  213. def refineStatSeq(): collection.immutable.List[Stat]
  214. def refinement(): collection.immutable.List[Stat]
  215. def rejectMod[M <: Mod](mods: collection.immutable.List[Mod], errorMsg: String)(implicit classifier: Classifier[Mod, M], tag: ClassTag[M]): Unit
  216. 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
  217. lazy val reporter: Reporter
  218. lazy val scannerTokens: Tokens
  219. def scriptSource(): Source
  220. def secondaryCtor(mods: collection.immutable.List[Mod]): Secondary
  221. def secondaryCtorRest(mods: collection.immutable.List[Mod], name: Name, paramss: collection.immutable.List[collection.immutable.List[Param]]): Secondary
  222. def selector(t: Term): Select
  223. def selectors(t: Term): Term.Ref
  224. def self(): Self
  225. def seqPatterns(): collection.immutable.List[Pat]
  226. def simpleExpr(allowRepeated: Boolean): Term
  227. def simpleExprRest(t: Term, canApply: Boolean): Term
  228. def source(): Source
  229. def stableId(): Term.Ref
  230. def startInfixType(): Type
  231. def startModType(): Type
  232. def stat(body: ⇒ Stat): Stat
  233. def statSeq[T <: Tree](statpf: PartialFunction[Token, T], errorMsg: String = "illegal start of definition")(implicit arg0: AstInfo[T]): collection.immutable.List[T]
  234. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  235. def syntaxErrorExpected[T <: Token](implicit arg0: TokenInfo[T]): Nothing
  236. def template(): Template
  237. def templateBody(): (Self, collection.immutable.List[Stat])
  238. def templateBodyOpt(parenMeansSyntaxError: Boolean): (Self, collection.immutable.List[Stat])
  239. def templateOpt(owner: TemplateOwner): Template
  240. def templateParents(): collection.immutable.List[Init]
  241. def templateStat: PartialFunction[Token, Stat]
  242. def templateStatSeq(): (Self, collection.immutable.List[Stat])
  243. def templateStats(): collection.immutable.List[Stat]
  244. def termName(advance: Boolean = true): Term.Name
  245. def tmplDef(mods: collection.immutable.List[Mod]): Member with Stat
  246. def toString(): String
    Definition Classes
    AnyRef → Any
  247. def token: Token
  248. final def tokenSeparated[Sep <: Token, T <: Tree](sepFirst: Boolean, part: ⇒ T)(implicit arg0: TokenInfo[Sep], arg1: AstInfo[T]): collection.immutable.List[T]
  249. implicit def tokenToTokenPos(token: Token): TokenPos
  250. def topLevelTmplDef: Member with Stat

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

  251. def topStat: PartialFunction[Token, Stat]
  252. def topStatSeq(): collection.immutable.List[Stat]
  253. def tparamModifiers(): Option[Mod]
  254. def traitDef(mods: collection.immutable.List[Mod]): Trait
  255. implicit def treeToTreePos(tree: Tree): TreePos
  256. def typ(): Type

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

  257. def typeBounds(): Bounds
  258. def typeDefOrDcl(mods: collection.immutable.List[Mod]): Member.Type with Stat
  259. def typeName(advance: Boolean = true): Type.Name
  260. def typeOrInfixType(location: Location): Type
  261. def typeParam(ownerIsType: Boolean, ctxBoundsAllowed: Boolean): Param
  262. def typeParamClauseOpt(ownerIsType: Boolean, ctxBoundsAllowed: Boolean): collection.immutable.List[Param]
  263. def typedOpt(): Option[Type]
  264. def unquote[T <: Tree](implicit arg0: AstInfo[T]): T
  265. def unquote[T <: Tree](advance: Boolean = true)(implicit arg0: AstInfo[T]): T
  266. def unquoteExpr(): Term
  267. def unquotePattern(): Pat
  268. def unquoteXmlExpr(): Term
  269. def unquoteXmlPattern(): Pat
  270. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  271. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  272. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  273. def xmlLiteralPattern(): Pat
  274. def xmlPat(): Xml
  275. def xmlSeqPatterns(): collection.immutable.List[Pat]
  276. def xmlTerm(): Xml
  277. def [B](y: B): (ScalametaParser, B)
    Implicit
    This member is added by an implicit conversion from ScalametaParser to ArrowAssoc[ScalametaParser] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
  278. object AutoPos extends Pos with Product with Serializable
  279. object CanEndStat
  280. object CantStartStat
  281. object CaseDefEnd
  282. object CaseIntro
  283. object CloseDelim
  284. object DclIntro
  285. object DefIntro
  286. object ExprIntro
  287. object InlineSoftModifier
  288. implicit object InvalidCaseImplicit extends InvalidModCombination[Mod.Case, Implicit]
  289. implicit object InvalidFinalAbstract extends InvalidModCombination[Final, Abstract]
  290. implicit object InvalidFinalSealed extends InvalidModCombination[Final, Sealed]
  291. implicit object InvalidOpenFinal extends InvalidModCombination[Open, Final]
  292. implicit object InvalidOpenSealed extends InvalidModCombination[Open, Sealed]
  293. implicit object InvalidOverrideAbstract extends InvalidModCombination[Override, Abstract]
  294. implicit object InvalidPrivateProtected extends InvalidModCombination[Private, Protected]
  295. implicit object InvalidProtectedPrivate extends InvalidModCombination[Protected, Private]
  296. object LineEnd
  297. object Literal
  298. object LocalModifier
  299. object Modifier
  300. object NonlocalModifier
  301. object NumericLiteral
  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. object StatSep
  308. object StatSeqEnd
  309. object TemplateIntro
  310. object Trivia
  311. object TypeIntro
  312. object Whitespace
  313. object noSeq extends SeqContextSensitive

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

  314. object outPattern extends PatternContextSensitive

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

  315. implicit object patInfixContext extends InfixContext
  316. object seqOK extends SeqContextSensitive

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

  317. object termInfixContext extends InfixContext
  318. object xmlSeqOK extends SeqContextSensitive

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

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ScalametaParser to any2stringadd[ScalametaParser]

Inherited by implicit conversion StringFormat from ScalametaParser to StringFormat[ScalametaParser]

Inherited by implicit conversion Ensuring from ScalametaParser to Ensuring[ScalametaParser]

Inherited by implicit conversion ArrowAssoc from ScalametaParser to ArrowAssoc[ScalametaParser]

Ungrouped