scalariform

parser

package parser

Visibility
  1. Public
  2. All

Type Members

  1. case class AccessModifier(privateOrProtected: Token, accessQualifierOpt: Option[AccessQualifier]) extends Modifier with Product with Serializable

  2. case class AccessQualifier(lbracket: Token, thisOrId: Token, rbracket: Token) extends AstNode with Product with Serializable

  3. case class Annotation(at: Token, annotationType: Type, argumentExprss: List[ArgumentExprs], newlineOption: Option[Token]) extends TypeElement with ExprElement with Product with Serializable

  4. case class AnonymousFunction(parameters: List[ExprElement], arrow: Token, body: StatSeq) extends ExprElement with Product with Serializable

  5. case class AnonymousFunctionStart(parameters: List[ExprElement], arrow: Token) extends ExprElement with Product with Serializable

  6. case class Argument(expr: Expr) extends AstNode with ExprElement with Product with Serializable

  7. trait ArgumentExprs extends ExprElement

  8. case class AscriptionExpr(left: List[ExprElement], colon: Token, right: List[ExprElement]) extends ExprElement with Product with Serializable

  9. sealed trait AstNode extends CaseClassReflector

  10. case class BlockArgumentExprs(contents: List[ExprElement]) extends ArgumentExprs with Product with Serializable

  11. case class BlockExpr(lbrace: Token, caseClausesOrStatSeq: Either[CaseClauses, StatSeq], rbrace: Token) extends AstNode with ExprElement with Product with Serializable

  12. case class BlockImportExpr(prefixExpr: Expr, importSelectors: ImportSelectors) extends ImportExpr with Product with Serializable

  13. case class CallByNameTypeElement(arrow: Token) extends AstNode with TypeElement with Product with Serializable

  14. case class CallExpr(exprDotOpt: Option[(List[ExprElement], Token)], id: Token, typeArgsOpt: Option[TypeExprElement] = scala.None, newLineOptsAndArgumentExprss: List[(Option[Token], ArgumentExprs)] = immutable.this.Nil, uscoreOpt: Option[Token] = scala.None) extends ExprElement with Product with Serializable

  15. case class CaseClause(casePattern: CasePattern, statSeq: StatSeq) extends AstNode with Product with Serializable

  16. case class CaseClauses(caseClauses: List[CaseClause]) extends AstNode with Product with Serializable

  17. case class CasePattern(caseToken: Token, pattern: Expr, guardOption: Option[Guard], arrow: Token) extends AstNode with Product with Serializable

  18. case class CatchClause(catchToken: Token, catchBlockOrExpr: Either[BlockExpr, Expr]) extends AstNode with Product with Serializable

  19. case class CompilationUnit(topStats: StatSeq, eofToken: Token) extends AstNode with Product with Serializable

  20. case class CondExpr(lparen: Token, condition: Expr, rparen: Token) extends AstNode with Product with Serializable

  21. sealed trait DefOrDcl extends AstNode

  22. case class DoExpr(doToken: Token, body: Expr, statSepOpt: Option[Token], whileToken: Token, condExpr: CondExpr) extends AstNode with ExprElement with Product with Serializable

  23. case class EarlyDefs(earlyBody: TemplateBody, withOpt: Option[Token]) extends AstNode with Product with Serializable

  24. case class ElseClause(semiOpt: Option[Token], elseToken: Token, elseBody: Expr) extends AstNode with Product with Serializable

  25. sealed trait Enumerator extends AstNode

  26. case class Enumerators(initialGenerator: Generator, rest: List[(Token, Enumerator)]) extends AstNode with Product with Serializable

  27. case class EqualsExpr(lhs: List[ExprElement], equals: Token, rhs: Expr) extends ExprElement with Product with Serializable

  28. case class Expr(contents: List[ExprElement]) extends AstNode with ExprElement with Stat with Enumerator with XmlContents with ImportExpr with Product with Serializable

  29. sealed trait ExprElement extends AstNode

  30. case class ExprFunBody(equals: Token, macroOpt: Option[Token], body: Expr) extends FunBody with Product with Serializable

  31. case class ForExpr(forToken: Token, lParenOrBrace: Token, enumerators: Enumerators, rParenOrBrace: Token, newlinesOption: Option[Token], yieldOption: Option[Token], body: Expr) extends AstNode with ExprElement with Product with Serializable

  32. case class FullDefOrDcl(annotations: List[Annotation], modifiers: List[Modifier], defOrDcl: DefOrDcl) extends Stat with Product with Serializable

  33. sealed trait FunBody extends AstNode

  34. case class FunDefOrDcl(defToken: Token, nameToken: Token, typeParamClauseOpt: Option[TypeParamClause], paramClauses: ParamClauses, returnTypeOpt: Option[(Token, Type)], funBodyOpt: Option[FunBody], localDef: Boolean) extends DefOrDcl with Product with Serializable

  35. case class GeneralTokens(toks: List[Token]) extends AstNode with TypeElement with ExprElement with Product with Serializable

  36. case class Generator(valOption: Option[Token], pattern: Expr, equalsOrArrowToken: Token, expr: Expr, guards: List[Guard]) extends AstNode with Enumerator with Product with Serializable

  37. case class Guard(ifToken: Token, expr: Expr) extends AstNode with Enumerator with Product with Serializable

  38. case class IfExpr(ifToken: Token, condExpr: CondExpr, newlinesOpt: Option[Token], body: Expr, elseClause: Option[ElseClause]) extends AstNode with ExprElement with Product with Serializable

  39. case class ImportClause(importToken: Token, importExpr: ImportExpr, otherImportExprs: List[(Token, ImportExpr)]) extends AstNode with Stat with Product with Serializable

  40. sealed trait ImportExpr extends AstNode

  41. case class ImportSelectors(lbrace: Token, firstImportSelector: Expr, otherImportSelectors: List[(Token, Expr)], rbrace: Token) extends AstNode with Product with Serializable

  42. class InferredSemicolonScalaParser extends AnyRef

  43. case class InfixExpr(left: List[ExprElement], infixId: Token, newlineOption: Option[Token], right: List[ExprElement]) extends ExprElement with Product with Serializable

  44. case class InfixTypeConstructor(id: Token) extends AstNode with TypeElement with Product with Serializable

  45. case class MatchExpr(left: List[ExprElement], matchToken: Token, block: BlockExpr) extends ExprElement with Product with Serializable

  46. sealed trait Modifier extends AstNode

  47. case class New(newToken: Token, template: Template) extends ExprElement with Product with Serializable

  48. case class PackageBlock(packageToken: Token, name: CallExpr, newlineOpt: Option[Token], lbrace: Token, topStats: StatSeq, rbrace: Token) extends Stat with Product with Serializable

  49. case class PackageStat(packageToken: Token, name: CallExpr) extends Stat with Product with Serializable

  50. case class Param(annotations: List[Annotation], modifiers: List[Modifier], valOrVarOpt: Option[Token], id: Token, paramTypeOpt: Option[(Token, Type)], defaultValueOpt: Option[(Token, Expr)]) extends AstNode with Product with Serializable

  51. case class ParamClause(lparen: Token, implicitOption: Option[Token], firstParamOption: Option[Param], otherParams: List[(Token, Param)], rparen: Token) extends AstNode with Product with Serializable

  52. case class ParamClauses(newlineOpt: Option[Token], paramClausesAndNewlines: List[(ParamClause, Option[Token])]) extends AstNode with Product with Serializable

  53. case class ParenArgumentExprs(lparen: Token, contents: List[ExprElement], rparen: Token) extends ArgumentExprs with Product with Serializable

  54. case class ParenExpr(lparen: Token, contents: List[ExprElement], rparen: Token) extends ExprElement with Product with Serializable

  55. case class PatDefOrDcl(valOrVarToken: Token, pattern: Expr, otherPatterns: List[(Token, Expr)], typedOpt: Option[(Token, Type)], equalsClauseOption: Option[(Token, Expr)]) extends DefOrDcl with Product with Serializable

  56. case class PostfixExpr(first: List[ExprElement], postfixId: Token) extends ExprElement with Product with Serializable

  57. case class PrePackageBlock(name: CallExpr, newlineOpt: Option[Token], lbrace: Token, topStats: StatSeq, rbrace: Token) extends Product with Serializable

  58. case class PrefixExprElement(id: Token) extends ExprElement with Product with Serializable

  59. case class ProcFunBody(newlineOpt: Option[Token], bodyBlock: BlockExpr) extends FunBody with Product with Serializable

  60. case class Refinement(lbrace: Token, refineStatSeq: StatSeq, rbrace: Token) extends AstNode with TypeElement with Product with Serializable

  61. class ScalaParser extends AnyRef

  62. class ScalaParserException extends RuntimeException

  63. case class SimpleModifier(token: Token) extends Modifier with Product with Serializable

  64. sealed trait Stat extends AstNode

  65. case class StatSeq(selfReferenceOpt: Option[(Expr, Token)], firstStatOpt: Option[Stat], otherStats: List[(Token, Option[Stat])]) extends AstNode with ExprElement with Product with Serializable

  66. case class StringInterpolation(interpolationId: Token, stringPartsAndScala: List[(Token, Expr)], terminalString: Token) extends ExprElement with Product with Serializable

  67. case class Template(earlyDefsOpt: Option[EarlyDefs], templateParentsOpt: Option[TemplateParents], templateBodyOpt: Option[TemplateBody]) extends ExprElement with Product with Serializable

  68. case class TemplateBody(newlineOpt: Option[Token], lbrace: Token, statSeq: StatSeq, rbrace: Token) extends AstNode with Product with Serializable

  69. case class TemplateInheritanceSection(extendsOrSubtype: Token, earlyDefsOpt: Option[EarlyDefs], templateParentsOpt: Option[TemplateParents]) extends AstNode with Product with Serializable

  70. case class TemplateOpt(templateInheritanceSectionOpt: Option[TemplateInheritanceSection], templateBodyOpt: Option[TemplateBody]) extends Product with Serializable

  71. case class TemplateParents(typeAndArgs: (Type, List[ArgumentExprs]), withTypesAndArgs: List[(Token, Type, List[ArgumentExprs])]) extends AstNode with Product with Serializable

  72. case class TmplDef(markerTokens: List[Token], name: Token, typeParamClauseOpt: Option[TypeParamClause], annotations: List[Annotation], accessModifierOpt: Option[AccessModifier], paramClausesOpt: Option[ParamClauses], templateInheritanceSectionOpt: Option[TemplateInheritanceSection], templateBodyOption: Option[TemplateBody]) extends DefOrDcl with Product with Serializable

  73. case class TryExpr(tryToken: Token, body: Expr, catchClauseOption: Option[CatchClause], finallyClauseOption: Option[(Token, Expr)]) extends AstNode with ExprElement with Product with Serializable

  74. case class Type(contents: List[TypeElement]) extends AstNode with TypeElement with Product with Serializable

  75. case class TypeDefOrDcl(contents: List[TypeElement]) extends DefOrDcl with Product with Serializable

  76. sealed trait TypeElement extends AstNode

  77. case class TypeExprElement(contents: List[TypeElement]) extends AstNode with ExprElement with Product with Serializable

  78. case class TypeParam(contents: List[TypeElement]) extends AstNode with TypeElement with Product with Serializable

  79. case class TypeParamClause(contents: List[TypeElement]) extends AstNode with TypeElement with Product with Serializable

  80. case class VarargsTypeElement(star: Token) extends AstNode with TypeElement with Product with Serializable

  81. case class VarianceTypeElement(id: Token) extends AstNode with TypeElement with Product with Serializable

  82. case class WhileExpr(whileToken: Token, condExpr: CondExpr, newlinesOpt: Option[Token], body: Expr) extends AstNode with ExprElement with Product with Serializable

  83. case class XmlAttribute(name: Token, whitespaceOption: Option[Token], equals: Token, whitespaceOption2: Option[Token], valueOrEmbeddedScala: Either[Token, Expr]) extends XmlExprElement with Product with Serializable

  84. case class XmlCDATA(token: Token) extends XmlContents with Product with Serializable

  85. case class XmlComment(token: Token) extends XmlContents with Product with Serializable

  86. sealed trait XmlContents extends XmlExprElement

  87. sealed trait XmlElement extends XmlContents

  88. case class XmlEmptyElement(startOpen: Token, name: Token, attributes: List[(Option[Token], XmlAttribute)], whitespaceOption: Option[Token], emptyClose: Token) extends XmlElement with Product with Serializable

  89. case class XmlEndTag(endOpen: Token, name: Token, whitespaceOption: Option[Token], tagClose: Token) extends XmlExprElement with Product with Serializable

  90. case class XmlExpr(first: XmlContents, otherElements: List[XmlContents]) extends ExprElement with Product with Serializable

  91. sealed trait XmlExprElement extends ExprElement

  92. case class XmlNonEmptyElement(startTag: XmlStartTag, contents: List[XmlContents], endTag: XmlEndTag) extends XmlElement with Product with Serializable

  93. case class XmlPCDATA(token: Token) extends XmlContents with Product with Serializable

  94. case class XmlProcessingInstruction(token: Token) extends XmlContents with Product with Serializable

  95. case class XmlStartTag(startOpen: Token, name: Token, attributes: List[(Option[Token], XmlAttribute)], whitespaceOption: Option[Token], tagClose: Token) extends XmlExprElement with Product with Serializable

  96. case class XmlUnparsed(token: Token) extends XmlContents with Product with Serializable

Value Members

  1. object InferredSemicolonScalaParser

  2. object ScalaParser

Ungrouped