Package

scalariform

parser

Permalink

package parser

Visibility
  1. Public
  2. All

Type Members

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

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

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

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

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

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

    Permalink
  7. trait ArgumentExprs extends ExprElement

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

    Permalink
  9. sealed trait AstNode extends Product

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

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

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

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

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

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

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

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

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

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

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

    Permalink
  21. sealed trait DefOrDcl extends AstNode

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

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

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

    Permalink
  25. sealed trait Enumerator extends AstNode

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

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

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

    Permalink
  29. sealed trait ExprElement extends AstNode

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

    Permalink
  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

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

    Permalink
  33. sealed trait FunBody extends AstNode

    Permalink
  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

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

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

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

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

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

    Permalink
  40. sealed trait ImportExpr extends AstNode

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

    Permalink
  42. class InferredSemicolonScalaParser extends AnyRef

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

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

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

    Permalink
  46. sealed trait Modifier extends AstNode

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

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

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

    Permalink
  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

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

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

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

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

    Permalink
  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

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

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

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

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

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

    Permalink
  61. class ScalaParser extends AnyRef

    Permalink
  62. class ScalaParserException extends RuntimeException

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

    Permalink
  64. sealed trait Stat extends AstNode

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

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

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

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

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

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

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

    Permalink
  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

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

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

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

    Permalink
  76. sealed trait TypeElement extends AstNode

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

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

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

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

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

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

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

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

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

    Permalink
  86. sealed trait XmlContents extends XmlExprElement

    Permalink
  87. sealed trait XmlElement extends XmlContents

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

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

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

    Permalink
  91. sealed trait XmlExprElement extends ExprElement

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

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

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

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

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

    Permalink

Value Members

  1. object InferredSemicolonScalaParser

    Permalink
  2. object ScalaParser

    Permalink

Ungrouped