Packages

class UnitScanner extends SourceFileScanner

A scanner over a given compilation unit

Source
Scanners.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. UnitScanner
  2. SourceFileScanner
  3. Scanner
  4. DocScanner
  5. ScannerCommon
  6. ScannerData
  7. TokenData
  8. CommonTokenData
  9. CharArrayReader
  10. CharArrayReaderData
  11. AnyRef
  12. 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 UnitScanner(unit: Global.CompilationUnit)
  2. new UnitScanner(unit: Global.CompilationUnit, patches: List[BracePatch])

Type Members

  1. class CharArrayLookaheadReader extends CharArrayReader
    Definition Classes
    CharArrayReader

Value Members

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

    Insert or delete a brace, if a patch exists for this offset

    Insert or delete a brace, if a patch exists for this offset

    Definition Classes
    UnitScannerScanner
  3. val base: Int

    the base of a number

    the base of a number

    Definition Classes
    TokenData
  4. val buf: Array[Char]
    Definition Classes
    SourceFileScannerCharArrayReader
  5. val cbuf: java.lang.StringBuilder

    A character buffer for literals

    A character buffer for literals

    Definition Classes
    Scanner
  6. val ch: Char

    the last read character

    the last read character

    Definition Classes
    CharArrayReaderData
  7. 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

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

    Definition Classes
    Scanner
  8. val charOffset: Int

    The offset one past the last read character

    The offset one past the last read character

    Definition Classes
    CharArrayReaderData
  9. def charVal: Char

    Convert current strVal to char value.

    Convert current strVal to char value.

    Definition Classes
    Scanner
  10. def checkNoLetter(): Unit
    Definition Classes
    Scanner
    Annotations
    @inline()
  11. def checkNoTrailingSeparator(): Unit
    Definition Classes
    Scanner
  12. def copyFrom(sd: ScannerData): UnitScanner.this.type
    Definition Classes
    ScannerData
  13. def copyFrom(td: TokenData): UnitScanner.this.type
    Definition Classes
    TokenData
  14. def copyFrom(cd: CharArrayReaderData): UnitScanner.this.type
    Definition Classes
    CharArrayReaderData
  15. def deprecationWarning(off: Scanners.Offset, msg: String, since: String): Unit
    Definition Classes
    UnitScannerSourceFileScannerScannerCommon
  16. def deprecationWarning(msg: String, since: String): Unit
    Definition Classes
    Scanner
  17. 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
  18. def doubleVal: Double
    Definition Classes
    Scanner
    Annotations
    @inline()
  19. def doubleVal(negated: Boolean): Double

    Convert current strVal, base to double value.

    Convert current strVal, base to double value.

    Definition Classes
    Scanner
  20. def error(off: Scanners.Offset, msg: String): Unit
    Definition Classes
    UnitScannerSourceFileScannerScannerCommon
  21. def floatVal: Float
    Definition Classes
    Scanner
    Annotations
    @inline()
  22. def floatVal(negated: Boolean): Float

    Convert current strVal, base to float value.

    Convert current strVal, base to float value.

    Definition Classes
    Scanner
  23. def flushDoc(): Global.DocComment
    Definition Classes
    DocScanner
  24. def healBraces(): List[BracePatch]

    overridden in UnitScanners

    overridden in UnitScanners

    Definition Classes
    UnitScannerScanner
  25. def inFirstOfStat(token: Scanners.Token): Boolean

    Can token start a statement?

    Can token start a statement?

    Definition Classes
    Scanner
  26. def inLastOfStat(token: Scanners.Token): Boolean

    Can token end a statement?

    Can token end a statement?

    Definition Classes
    Scanner
  27. def incompleteInputError(off: Scanners.Offset, msg: String): Unit
    Definition Classes
    UnitScannerSourceFileScannerScannerCommon
  28. def incompleteInputError(msg: String): Unit

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

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

    Definition Classes
    Scanner
  29. def init(): Unit

    Initialization method: read first char, then first token

    Initialization method: read first char, then first token

    Definition Classes
    Scanner
  30. def intVal: Long
    Definition Classes
    Scanner
    Annotations
    @inline()
  31. 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.

    Definition Classes
    Scanner
  32. def isAtEnd: Boolean
    Definition Classes
    Scanner
  33. def isTrailingComma(right: Scanners.Token): Boolean
    Definition Classes
    Scanner
  34. 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
  35. 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
  36. val lineStartOffset: Int

    The start offset of the current line

    The start offset of the current line

    Definition Classes
    CharArrayReaderData
  37. 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
  38. def lookingAhead[A](body: => A): A
    Definition Classes
    Scanner
  39. val name: Global.TermName

    the name of an identifier

    the name of an identifier

    Definition Classes
    TokenDataCommonTokenData
  40. val next: TokenData

    we need one token lookahead and one token history

    we need one token lookahead and one token history

    Definition Classes
    ScannerData
  41. 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
  42. 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
  43. def nextToken(): Unit

    Produce next token, filling TokenData fields of Scanner.

    Produce next token, filling TokenData fields of Scanner.

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

    Get next token, and allow the otherwise deprecated ident name

    Get next token, and allow the otherwise deprecated ident name

    Definition Classes
    Scanner
  45. 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
  46. def parenBalance(token: Scanners.Token): Int

    overridden in UnitScanners

    overridden in UnitScanners

    Definition Classes
    UnitScannerScanner
  47. lazy val parensAnalyzer: ParensAnalyzer
  48. def postProcessToken(): Unit
    Definition Classes
    Scanner
  49. val prev: TokenData
    Definition Classes
    ScannerData
  50. def registerDocComment(raw: String, pos: Global.Position): Unit
    Definition Classes
    DocScanner
  51. def resume(lastCode: Scanners.Token): Unit
    Definition Classes
    Scanner
  52. 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).

    Definition Classes
    Scanner
  53. final def skipComment(): Boolean

    Returns true if a comment was skipped.

    Returns true if a comment was skipped.

    Definition Classes
    Scanner
    Note

    Pre-condition: ch == '/'

  54. final def skipNestedComments(): Unit
    Definition Classes
    Scanner
    Annotations
    @tailrec()
  55. def skipToken(): Scanners.Offset

    read next token and return last offset

    read next token and return last offset

    Definition Classes
    Scanner
  56. def skipTrailingComma(right: Scanners.Token): Boolean
    Definition Classes
    ScannerScannerCommon
  57. val source: SourceFile
    Definition Classes
    SourceFileScanner
  58. val strVal: String

    the string value of a literal

    the string value of a literal

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

    generate an error at the current token offset

    generate an error at the current token offset

    Definition Classes
    Scanner
  60. def syntaxError(off: Scanners.Offset, msg: String): Unit

    generate an error at the given offset

    generate an error at the given offset

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

    the next token

    the next token

    Definition Classes
    TokenDataCommonTokenData
  63. val unit: Global.CompilationUnit
  64. def warning(off: Scanners.Offset, msg: String, category: WarningCategory): Unit
    Definition Classes
    UnitScannerSourceFileScannerScannerCommon