Packages

abstract class Scanner extends CharArrayReader with TokenData with ScannerData with ScannerCommon with DocScanner

Source
Scanners.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Scanner
  2. DocScanner
  3. ScannerCommon
  4. ScannerData
  5. TokenData
  6. CommonTokenData
  7. CharArrayReader
  8. CharArrayReaderData
  9. AnyRef
  10. 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 Scanner()

Type Members

  1. class CharArrayLookaheadReader extends CharArrayReader
    Definition Classes
    CharArrayReader

Abstract Value Members

  1. abstract val buf: Array[Char]
    Definition Classes
    CharArrayReader
  2. abstract def deprecationWarning(off: Scanners.Offset, msg: String, since: String): Unit
    Definition Classes
    ScannerCommon
  3. abstract def error(off: Scanners.Offset, msg: String): Unit
    Definition Classes
    ScannerCommon
  4. abstract def incompleteInputError(off: Scanners.Offset, msg: String): Unit
    Definition Classes
    ScannerCommon
  5. abstract def warning(off: Scanners.Offset, msg: String, category: WarningCategory): Unit
    Definition Classes
    ScannerCommon

Concrete Value Members

  1. def adjustSepRegions(lastToken: Scanners.Token): Unit
  2. def applyBracePatch(): Boolean

    overridden in UnitScanners: apply brace patch if one exists for this offset return true if subsequent end of line handling should be suppressed.

  3. val base: Int

    the base of a number

    the base of a number

    Definition Classes
    TokenData
  4. val cbuf: java.lang.StringBuilder

    A character buffer for literals

  5. val ch: Char

    the last read character

    the last read character

    Definition Classes
    CharArrayReaderData
  6. def charLitOr(op: () => Unit): Unit

    Parse character literal if current character is followed by \', or follow with given op and return a symbol literal token

  7. val charOffset: Int

    The offset one past the last read character

    The offset one past the last read character

    Definition Classes
    CharArrayReaderData
  8. def charVal: Char

    Convert current strVal to char value.

  9. def checkNoLetter(): Unit
    Annotations
    @inline()
  10. def checkNoTrailingSeparator(): Unit
  11. def copyFrom(sd: ScannerData): Scanner.this.type
    Definition Classes
    ScannerData
  12. def copyFrom(td: TokenData): Scanner.this.type
    Definition Classes
    TokenData
  13. def copyFrom(cd: CharArrayReaderData): Scanner.this.type
    Definition Classes
    CharArrayReaderData
  14. def deprecationWarning(msg: String, since: String): Unit
  15. def discardDocBuffer(): Unit

    To prevent doc comments attached to expressions from leaking out of scope onto the next documentable entity, they are discarded upon passing a right brace, bracket, or parenthesis.

    To prevent doc comments attached to expressions from leaking out of scope onto the next documentable entity, they are discarded upon passing a right brace, bracket, or parenthesis.

    Definition Classes
    DocScanner
  16. def doubleVal: Double
    Annotations
    @inline()
  17. def doubleVal(negated: Boolean): Double

    Convert current strVal, base to double value.

  18. def floatVal: Float
    Annotations
    @inline()
  19. def floatVal(negated: Boolean): Float

    Convert current strVal, base to float value.

  20. def flushDoc(): Global.DocComment
    Definition Classes
    DocScanner
  21. def healBraces(): List[BracePatch]

    overridden in UnitScanners

  22. def inFirstOfStat(token: Scanners.Token): Boolean

    Can token start a statement?

  23. def inLastOfStat(token: Scanners.Token): Boolean

    Can token end a statement?

  24. def incompleteInputError(msg: String): Unit

    signal an error where the input ended in the middle of a token

  25. def init(): Unit

    Initialization method: read first char, then first token

  26. def intVal: Long
    Annotations
    @inline()
  27. def intVal(negated: Boolean): Long

    Convert current strVal, base to long value.

    Convert current strVal, base to long value. This is tricky because of max negative value.

    Conversions in base 2, 10 and 16 are supported. Number separators are skipped on the fly.

  28. def isAtEnd: Boolean
  29. def isTrailingComma(right: Scanners.Token): Boolean
  30. val lastLineStartOffset: Int

    The start offset of the line before the current one

    The start offset of the line before the current one

    Definition Classes
    CharArrayReaderData
  31. val lastOffset: Scanners.Offset

    the offset of the character following the token preceding this one

    the offset of the character following the token preceding this one

    Definition Classes
    TokenData
  32. val lineStartOffset: Int

    The start offset of the current line

    The start offset of the current line

    Definition Classes
    CharArrayReaderData
  33. def lookaheadReader: CharArrayLookaheadReader

    A new reader that takes off at the current character position

    A new reader that takes off at the current character position

    Definition Classes
    CharArrayReader
  34. def lookingAhead[A](body: => A): A
  35. val name: Global.TermName

    the name of an identifier

    the name of an identifier

    Definition Classes
    TokenDataCommonTokenData
  36. val next: TokenData

    we need one token lookahead and one token history

    we need one token lookahead and one token history

    Definition Classes
    ScannerData
  37. final def nextChar(): Unit

    Advance one character; reducing CR;LF pairs to just LF

    Advance one character; reducing CR;LF pairs to just LF

    Definition Classes
    CharArrayReader
  38. final def nextRawChar(): Unit

    Advance one character, leaving CR;LF pairs intact.

    Advance one character, leaving CR;LF pairs intact. This is for use in multi-line strings, so there are no "potential line ends" here.

    Definition Classes
    CharArrayReader
  39. def nextToken(): Unit

    Produce next token, filling TokenData fields of Scanner.

    Produce next token, filling TokenData fields of Scanner.

    Definition Classes
    ScannerScannerCommon
  40. def nextTokenAllow(name: Global.Name): Unit

    Get next token, and allow the otherwise deprecated ident name

  41. val offset: Scanners.Offset

    the offset of the first character of the current token

    the offset of the first character of the current token

    Definition Classes
    TokenData
  42. def parenBalance(token: Scanners.Token): Int

    overridden in UnitScanners

  43. def postProcessToken(): Unit
  44. val prev: TokenData
    Definition Classes
    ScannerData
  45. def registerDocComment(raw: String, pos: Global.Position): Unit
    Definition Classes
    DocScanner
  46. def resume(lastCode: Scanners.Token): Unit
  47. var sepRegions: List[Scanners.Token]

    a stack of tokens which indicates whether line-ends can be statement separators also used for keeping track of nesting levels.

    a stack of tokens which indicates whether line-ends can be statement separators also used for keeping track of nesting levels. We keep track of the closing symbol of a region. This can be RPAREN if region starts with '(' RBRACKET if region starts with '[' RBRACE if region starts with '{' ARROW if region starts with 'case' STRINGLIT if region is a string interpolation expression starting with '${' (the STRINGLIT appears twice in succession on the stack iff the expression is a multiline string literal).

  48. final def skipComment(): Boolean

    Returns true if a comment was skipped.

    Returns true if a comment was skipped.

    Note

    Pre-condition: ch == '/'

  49. final def skipNestedComments(): Unit
    Annotations
    @tailrec()
  50. def skipToken(): Scanners.Offset

    read next token and return last offset

  51. def skipTrailingComma(right: Scanners.Token): Boolean
    Definition Classes
    ScannerScannerCommon
  52. val strVal: String

    the string value of a literal

    the string value of a literal

    Definition Classes
    TokenData
  53. def syntaxError(msg: String): Unit

    generate an error at the current token offset

  54. def syntaxError(off: Scanners.Offset, msg: String): Unit

    generate an error at the given offset

  55. def toString(): String
    Definition Classes
    Scanner → AnyRef → Any
  56. val token: Scanners.Token

    the next token

    the next token

    Definition Classes
    TokenDataCommonTokenData