org.kiama.example.oberon0.base

CompilerDriver

trait CompilerDriver extends Compiler[ModuleDecl] with PrettyPrinter

A driver for an artefact that parses, pretty prints and performs semantic analysis.

Self Type
CompilerDriver with RegexParsers with SourcePrettyPrinter with SymbolTable with Analyser
Source
Driver.scala
Linear Supertypes
PrettyPrinter, PrettyPrinterBase, Compiler[ModuleDecl], RegexCompiler[ModuleDecl], RegexParsers, Parsers, CompilerBase[ModuleDecl], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. CompilerDriver
  2. PrettyPrinter
  3. PrettyPrinterBase
  4. Compiler
  5. RegexCompiler
  6. RegexParsers
  7. Parsers
  8. CompilerBase
  9. AnyRef
  10. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class Doc extends ((output.PrettyPrinter.Indent, output.PrettyPrinter.Width)) ⇒ ((Int, Queue[(Int, (Boolean) ⇒ ((Int) ⇒ output.PrettyPrinter.Layout) ⇒ (Int) ⇒ output.PrettyPrinter.Layout)]) ⇒ (Int) ⇒ output.PrettyPrinter.Layout) ⇒ (Int, Queue[(Int, (Boolean) ⇒ ((Int) ⇒ output.PrettyPrinter.Layout) ⇒ (Int) ⇒ output.PrettyPrinter.Layout)]) ⇒ (Int) ⇒ output.PrettyPrinter.Layout with output.PrettyPrinter.DocOps

    Definition Classes
    PrettyPrinter → PrettyPrinterBase
  2. trait DocOps extends AnyRef

    Definition Classes
    PrettyPrinterBase
  3. type Elem = Char

    Definition Classes
    RegexParsers → Parsers
  4. case class Error extends NoSuccess with Product with Serializable

    Definition Classes
    Parsers
  5. case class Failure extends NoSuccess with Product with Serializable

    Definition Classes
    Parsers
  6. type Indent = Int

    Definition Classes
    PrettyPrinterBase
  7. type Input = Reader[(CompilerDriver.this)#Elem]

    Definition Classes
    Parsers
  8. type Layout = String

    Definition Classes
    PrettyPrinterBase
  9. sealed abstract class NoSuccess extends ParseResult[Nothing]

    Definition Classes
    Parsers
  10. trait OnceParser[+T] extends Parser[T]

    Definition Classes
    Parsers
  11. sealed abstract class ParseResult[+T] extends AnyRef

    Definition Classes
    Parsers
  12. abstract class Parser[+T] extends (Input) ⇒ ParseResult[T]

    Definition Classes
    Parsers
  13. trait PrettyPrintable extends AnyRef

    Definition Classes
    PrettyPrinterBase
  14. case class Success[+T] extends ParseResult[T] with Product with Serializable

    Definition Classes
    Parsers
  15. type Width = Int

    Definition Classes
    PrettyPrinterBase
  16. case class ~[+a, +b] extends Product with Serializable

    Definition Classes
    Parsers

Abstract Value Members

  1. abstract def artefact: String

    The name of this artefact.

  2. abstract def parser: (CompilerDriver.this)#Parser[ModuleDecl]

    Definition Classes
    RegexCompiler

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def OnceParser[T](f: ((CompilerDriver.this)#Input) ⇒ (CompilerDriver.this)#ParseResult[T]): (CompilerDriver.this)#Parser[T] with (CompilerDriver.this)#OnceParser[T]

    Definition Classes
    Parsers
  7. def Parser[T](f: ((CompilerDriver.this)#Input) ⇒ (CompilerDriver.this)#ParseResult[T]): (CompilerDriver.this)#Parser[T]

    Definition Classes
    Parsers
  8. def accept[U](expected: String, f: PartialFunction[(CompilerDriver.this)#Elem, U]): (CompilerDriver.this)#Parser[U]

    Definition Classes
    Parsers
  9. def accept[ES](es: ES)(implicit arg0: (ES) ⇒ List[(CompilerDriver.this)#Elem]): (CompilerDriver.this)#Parser[List[(CompilerDriver.this)#Elem]]

    Definition Classes
    Parsers
  10. implicit def accept(e: (CompilerDriver.this)#Elem): (CompilerDriver.this)#Parser[(CompilerDriver.this)#Elem]

    Definition Classes
    Parsers
  11. def acceptIf(p: ((CompilerDriver.this)#Elem) ⇒ Boolean)(err: ((CompilerDriver.this)#Elem) ⇒ String): (CompilerDriver.this)#Parser[(CompilerDriver.this)#Elem]

    Definition Classes
    Parsers
  12. def acceptMatch[U](expected: String, f: PartialFunction[(CompilerDriver.this)#Elem, U]): (CompilerDriver.this)#Parser[U]

    Definition Classes
    Parsers
  13. def acceptSeq[ES](es: ES)(implicit arg0: (ES) ⇒ Iterable[(CompilerDriver.this)#Elem]): (CompilerDriver.this)#Parser[List[(CompilerDriver.this)#Elem]]

    Definition Classes
    Parsers
  14. def ampersand: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  15. def angles(d: (CompilerDriver.this)#Doc): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  16. def any(a: Any): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  17. implicit def anyToPrettyPrintable(a: Any): (CompilerDriver.this)#PrettyPrintable

    Definition Classes
    PrettyPrinterBase
  18. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  19. def asterisk: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  20. def atsign: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  21. def backquote: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  22. def backslash: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  23. def baseUsageMessage: String

  24. def braces(d: (CompilerDriver.this)#Doc): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  25. def brackets(d: (CompilerDriver.this)#Doc): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  26. def caret: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  27. def cat(ds: Seq[(CompilerDriver.this)#Doc]): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  28. def chainl1[T, U](first: ⇒ (CompilerDriver.this)#Parser[T], p: ⇒ (CompilerDriver.this)#Parser[U], q: ⇒ (CompilerDriver.this)#Parser[(T, U) ⇒ T]): (CompilerDriver.this)#Parser[T]

    Definition Classes
    Parsers
  29. def chainl1[T](p: ⇒ (CompilerDriver.this)#Parser[T], q: ⇒ (CompilerDriver.this)#Parser[(T, T) ⇒ T]): (CompilerDriver.this)#Parser[T]

    Definition Classes
    Parsers
  30. def chainr1[T, U](p: ⇒ (CompilerDriver.this)#Parser[T], q: ⇒ (CompilerDriver.this)#Parser[(T, U) ⇒ U], combine: (T, U) ⇒ U, first: U): (CompilerDriver.this)#Parser[U]

    Definition Classes
    Parsers
  31. var challengeFlag: Boolean

  32. val challengeFlagDefault: Boolean

  33. implicit def char(c: Char): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  34. def checkargs(args: Array[String], emitter: Emitter): Array[String]

    Process the command-line arguments and return an array of the input file names if processing should continue, None otherwise.

    Process the command-line arguments and return an array of the input file names if processing should continue, None otherwise.

    Definition Classes
    CompilerDriver → CompilerBase
  35. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  36. def colon: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  37. def comma: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  38. def commit[T](p: ⇒ (CompilerDriver.this)#Parser[T]): (CompilerDriver.this)#Parser[T]

    Definition Classes
    Parsers
  39. def compile(args: Array[String], console: Console): String

    Definition Classes
    CompilerBase
  40. def consumeast(ast: ModuleDecl, console: Console, emitter: Emitter): Unit

    Consume the AST.

    Consume the AST. For example, translate it to something else. By default, do nothing.

  41. val defaultIndent: Int

    Definition Classes
    PrettyPrinterBase
  42. val defaultWidth: Int

    Definition Classes
    PrettyPrinterBase
  43. def dollar: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  44. def dot: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  45. def dquote: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  46. def dquotes(d: (CompilerDriver.this)#Doc): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  47. def driver(args: Array[String], console: Console, emitter: Emitter): Unit

    Custom driver for section tagging and challenge mode for errors.

    Custom driver for section tagging and challenge mode for errors. If a parse error occurs: in challenge mode, just send "parse failed" to standard output, otherwise send the message to the errors file.

    Definition Classes
    CompilerDriver → CompilerBase
  48. def elem(e: (CompilerDriver.this)#Elem): (CompilerDriver.this)#Parser[(CompilerDriver.this)#Elem]

    Definition Classes
    Parsers
  49. def elem(kind: String, p: ((CompilerDriver.this)#Elem) ⇒ Boolean): (CompilerDriver.this)#Parser[(CompilerDriver.this)#Elem]

    Definition Classes
    Parsers
  50. def empty: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinter → PrettyPrinterBase
  51. def enclose(l: (CompilerDriver.this)#Doc, d: (CompilerDriver.this)#Doc, r: (CompilerDriver.this)#Doc): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  52. def encoding: String

    Definition Classes
    CompilerBase
  53. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  54. def equal: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  55. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  56. def err(msg: String): (CompilerDriver.this)#Parser[Nothing]

    Definition Classes
    Parsers
  57. def exclamation: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  58. def failure(msg: String): (CompilerDriver.this)#Parser[Nothing]

    Definition Classes
    Parsers
  59. def fillcat(ds: Seq[(CompilerDriver.this)#Doc]): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  60. def fillsep(ds: Seq[(CompilerDriver.this)#Doc], sep: (CompilerDriver.this)#Doc): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  61. def fillsep(ds: Seq[(CompilerDriver.this)#Doc]): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  62. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  63. def forwslash: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  64. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  65. def group(d: (CompilerDriver.this)#Doc): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinter → PrettyPrinterBase
  66. def guard[T](p: ⇒ (CompilerDriver.this)#Parser[T]): (CompilerDriver.this)#Parser[T]

    Definition Classes
    Parsers
  67. def handleWhiteSpace(source: CharSequence, offset: Int): Int

    Attributes
    protected
    Definition Classes
    RegexParsers
  68. def hash: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  69. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  70. def hcat(ds: Seq[(CompilerDriver.this)#Doc]): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  71. var helpFlag: Boolean

  72. val helpFlagDefault: Boolean

  73. def hsep(ds: Seq[(CompilerDriver.this)#Doc], sep: (CompilerDriver.this)#Doc): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  74. def hsep(ds: Seq[(CompilerDriver.this)#Doc]): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  75. def initialiseSemanticAnalysis: Unit

    Perform initialisation of semantic analysis that is necessary before processing an AST.

  76. var input: Option[String]

  77. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  78. def langle: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  79. def lbrace: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  80. def lbracket: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  81. def line: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinter → PrettyPrinterBase
  82. def line(repl: (CompilerDriver.this)#Layout): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinter → PrettyPrinterBase
  83. def linebreak: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinter → PrettyPrinterBase
  84. def list[T](l: List[T], prefix: String, elemToDoc: (T) ⇒ (CompilerDriver.this)#Doc, sep: (CompilerDriver.this)#Doc, sepfn: (Seq[(CompilerDriver.this)#Doc], (CompilerDriver.this)#Doc) ⇒ (CompilerDriver.this)#Doc): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  85. implicit def literal(s: String): (CompilerDriver.this)#Parser[String]

    Definition Classes
    RegexParsers
  86. def log[T](p: ⇒ (CompilerDriver.this)#Parser[T])(name: String): (CompilerDriver.this)#Parser[T]

    Definition Classes
    Parsers
  87. def lparen: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  88. def lsep(ds: Seq[(CompilerDriver.this)#Doc], sep: (CompilerDriver.this)#Doc): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  89. def lsep2(ds: Seq[(CompilerDriver.this)#Doc], sep: (CompilerDriver.this)#Doc): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  90. def lterm(ds: Seq[(CompilerDriver.this)#Doc], term: (CompilerDriver.this)#Doc): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  91. def main(args: Array[String]): Unit

    Definition Classes
    CompilerBase
  92. def makeast(reader: Reader, filename: String, emitter: Emitter): Either[ModuleDecl, String]

    Definition Classes
    RegexCompiler → CompilerBase
  93. def minus: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  94. def mkList[T]: ((CompilerDriver.this)#~[T, List[T]]) ⇒ List[T]

    Definition Classes
    Parsers
  95. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  96. def nest(d: (CompilerDriver.this)#Doc, j: (CompilerDriver.this)#Indent): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinter → PrettyPrinterBase
  97. def not[T](p: ⇒ (CompilerDriver.this)#Parser[T]): (CompilerDriver.this)#Parser[Unit]

    Definition Classes
    Parsers
  98. final def notify(): Unit

    Definition Classes
    AnyRef
  99. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  100. def opt[T](p: ⇒ (CompilerDriver.this)#Parser[T]): (CompilerDriver.this)#Parser[Option[T]]

    Definition Classes
    Parsers
  101. def parens(d: (CompilerDriver.this)#Doc): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  102. def parse[T](p: (CompilerDriver.this)#Parser[T], in: Reader): (CompilerDriver.this)#ParseResult[T]

    Definition Classes
    RegexParsers
  103. def parse[T](p: (CompilerDriver.this)#Parser[T], in: CharSequence): (CompilerDriver.this)#ParseResult[T]

    Definition Classes
    RegexParsers
  104. def parse[T](p: (CompilerDriver.this)#Parser[T], in: Reader[Char]): (CompilerDriver.this)#ParseResult[T]

    Definition Classes
    RegexParsers
  105. def parseAll[T](p: (CompilerDriver.this)#Parser[T], in: CharSequence): (CompilerDriver.this)#ParseResult[T]

    Definition Classes
    RegexParsers
  106. def parseAll[T](p: (CompilerDriver.this)#Parser[T], in: Reader): (CompilerDriver.this)#ParseResult[T]

    Definition Classes
    RegexParsers
  107. def parseAll[T](p: (CompilerDriver.this)#Parser[T], in: Reader[Char]): (CompilerDriver.this)#ParseResult[T]

    Definition Classes
    RegexParsers
  108. def percent: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  109. def phrase[T](p: (CompilerDriver.this)#Parser[T]): (CompilerDriver.this)#Parser[T]

    Definition Classes
    RegexParsers → Parsers
  110. def plist(l: List[(CompilerDriver.this)#PrettyPrintable], prefix: String, elemToDoc: ((CompilerDriver.this)#PrettyPrintable) ⇒ (CompilerDriver.this)#Doc, sep: (CompilerDriver.this)#Doc, sepfn: (Seq[(CompilerDriver.this)#Doc], (CompilerDriver.this)#Doc) ⇒ (CompilerDriver.this)#Doc): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  111. def plus: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  112. def positioned[T <: Positional](p: ⇒ (CompilerDriver.this)#Parser[T]): (CompilerDriver.this)#Parser[T]

    Definition Classes
    RegexParsers → Parsers
  113. var pprintastFlag: Boolean

  114. val pprintastFlagDefault: Boolean

  115. def pretty(d: (CompilerDriver.this)#Doc, w: (CompilerDriver.this)#Width): (CompilerDriver.this)#Layout

    Definition Classes
    PrettyPrinter → PrettyPrinterBase
  116. def pretty(p: (CompilerDriver.this)#PrettyPrintable): (CompilerDriver.this)#Layout

    Definition Classes
    PrettyPrinterBase
  117. def pretty_any(a: Any): (CompilerDriver.this)#Layout

    Definition Classes
    PrettyPrinterBase
  118. var printastFlag: Boolean

  119. val printastFlagDefault: Boolean

  120. def process(filename: String, ast: ModuleDecl, console: Console, emitter: Emitter): Boolean

    Process the given abstract syntax tree.

    Process the given abstract syntax tree. Send output to emitter, marking sections so that we can split things later.

    Definition Classes
    CompilerDriver → Compiler → CompilerBase
  121. def processargs(args: List[String]): Boolean

  122. def processast(ast: ModuleDecl, console: Console, emitter: Emitter): ModuleDecl

    Process the AST, returning the new one.

    Process the AST, returning the new one. By default, return the AST unchanged.

  123. def question: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  124. def rangle: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  125. def rbrace: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  126. def rbracket: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  127. implicit def regex(r: Regex): (CompilerDriver.this)#Parser[String]

    Definition Classes
    RegexParsers
  128. def rep[T](p: ⇒ (CompilerDriver.this)#Parser[T]): (CompilerDriver.this)#Parser[List[T]]

    Definition Classes
    Parsers
  129. def rep1[T](first: ⇒ (CompilerDriver.this)#Parser[T], p0: ⇒ (CompilerDriver.this)#Parser[T]): (CompilerDriver.this)#Parser[List[T]]

    Definition Classes
    Parsers
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The p0 call-by-name arguments is evaluated at most once per constructed Parser object, instead of on every need that arises during parsing.

  130. def rep1[T](p: ⇒ (CompilerDriver.this)#Parser[T]): (CompilerDriver.this)#Parser[List[T]]

    Definition Classes
    Parsers
  131. def rep1sep[T](p: ⇒ (CompilerDriver.this)#Parser[T], q: ⇒ (CompilerDriver.this)#Parser[Any]): (CompilerDriver.this)#Parser[List[T]]

    Definition Classes
    Parsers
  132. def repN[T](num: Int, p: ⇒ (CompilerDriver.this)#Parser[T]): (CompilerDriver.this)#Parser[List[T]]

    Definition Classes
    Parsers
  133. def repsep[T](p: ⇒ (CompilerDriver.this)#Parser[T], q: ⇒ (CompilerDriver.this)#Parser[Any]): (CompilerDriver.this)#Parser[List[T]]

    Definition Classes
    Parsers
  134. def resetflags(): Unit

  135. def rparen: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  136. def section(emitter: Emitter, name: String): Unit

    Output a section heading so that the output can be split later.

  137. def semi: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  138. def sep(ds: Seq[(CompilerDriver.this)#Doc]): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  139. def skipWhitespace: Boolean

    Definition Classes
    RegexParsers
  140. def softbreak: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  141. def softline: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  142. def space: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  143. def spaces(n: Int): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  144. def squote: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  145. def squotes(d: (CompilerDriver.this)#Doc): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  146. def ssep(ds: Seq[(CompilerDriver.this)#Doc], sep: (CompilerDriver.this)#Doc): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  147. def sterm(ds: Seq[(CompilerDriver.this)#Doc], term: (CompilerDriver.this)#Doc): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  148. def string(s: String): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  149. def success[T](v: T): (CompilerDriver.this)#Parser[T]

    Definition Classes
    Parsers
  150. def surround(d: (CompilerDriver.this)#Doc, b: (CompilerDriver.this)#Doc): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  151. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  152. implicit def text(t: String): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinter → PrettyPrinterBase
  153. def tilde: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  154. def toString(): String

    Definition Classes
    AnyRef → Any
  155. def underscore: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  156. def usageMessage: String

  157. def value(v: Any): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  158. def vcat(ds: Seq[(CompilerDriver.this)#Doc]): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  159. def verticalbar: (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  160. def vsep(ds: Seq[(CompilerDriver.this)#Doc], sep: (CompilerDriver.this)#Doc): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  161. def vsep(ds: Seq[(CompilerDriver.this)#Doc]): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
  162. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  163. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  164. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  165. val whiteSpace: Regex

    Attributes
    protected
    Definition Classes
    RegexParsers

Deprecated Value Members

  1. def lastNoSuccess: (CompilerDriver.this)#NoSuccess

    Definition Classes
    Parsers
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) lastNoSuccess was not thread-safe and will be removed in 2.11.0

  2. def lastNoSuccess_=(x: (CompilerDriver.this)#NoSuccess): Unit

    Definition Classes
    Parsers
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) lastNoSuccess was not thread-safe and will be removed in 2.11.0

  3. def product(p: Any): (CompilerDriver.this)#Doc

    Definition Classes
    PrettyPrinterBase
    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.1) Use PrettyPrinter.any instead.

Inherited from PrettyPrinter

Inherited from PrettyPrinterBase

Inherited from Compiler[ModuleDecl]

Inherited from RegexCompiler[ModuleDecl]

Inherited from RegexParsers

Inherited from Parsers

Inherited from CompilerBase[ModuleDecl]

Inherited from AnyRef

Inherited from Any

Ungrouped