Packages

abstract class JavaScanner extends AbstractJavaScanner with JavaTokenData with Cloneable with ScannerCommon with DocScanner

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JavaScanner
  2. DocScanner
  3. ScannerCommon
  4. CommonTokenData
  5. Cloneable
  6. Cloneable
  7. JavaTokenData
  8. AbstractJavaScanner
  9. AbstractJavaTokenData
  10. AnyRef
  11. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JavaScanner()

Type Members

  1. type ScanPosition = Int
    Definition Classes
    JavaTokenDataAbstractJavaTokenData

Abstract Value Members

  1. abstract def deprecationWarning(off: JavaScanners.Offset, msg: String, since: String): Unit
    Definition Classes
    ScannerCommon
  2. abstract def error(off: JavaScanners.Offset, msg: String): Unit
    Definition Classes
    ScannerCommon
  3. implicit abstract def g2p(pos: ScanPosition): Global.Position
    Definition Classes
    AbstractJavaScanner
  4. abstract def incompleteInputError(off: JavaScanners.Offset, msg: String): Unit
    Definition Classes
    ScannerCommon

Concrete Value Members

  1. val NoPos: Int
    Definition Classes
    JavaTokenDataAbstractJavaTokenData
  2. val base: Int

    the base of a number

    the base of a number

    Definition Classes
    JavaTokenData
  3. val cbuf: collection.mutable.StringBuilder

    character buffer for literals

  4. def copyFrom(td: JavaTokenData): Unit
    Definition Classes
    JavaTokenData
  5. def currentPos: Global.Position
    Definition Classes
    JavaScannerAbstractJavaScanner
  6. 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
  7. def floatVal(negated: Boolean): Double

    convert name, base to double value

    convert name, base to double value

    Definition Classes
    JavaScannerAbstractJavaScanner
  8. def floatVal: Double
    Definition Classes
    JavaScannerAbstractJavaScanner
  9. def flushDoc(): Global.DocComment
    Definition Classes
    DocScanner
  10. var in: JavaCharArrayReader
  11. def incompleteInputError(msg: String): Unit

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

  12. def init(): Unit

    INIT: read lookahead character and token.

  13. def intVal(negated: Boolean): Long

    convert name to long value

    convert name to long value

    Definition Classes
    JavaScannerAbstractJavaScanner
  14. def intVal: Long
    Definition Classes
    JavaScannerAbstractJavaScanner
  15. val lastPos: Int

    the first character position after the previous token

    the first character position after the previous token

    Definition Classes
    JavaTokenData
  16. def lookaheadToken: Int
  17. val name: Global.TermName

    the name of an identifier or token

    the name of an identifier or token

    Definition Classes
    JavaTokenDataAbstractJavaTokenData
  18. val next: JavaTokenData

    we need one token lookahead

    we need one token lookahead

    Definition Classes
    JavaScannerAbstractJavaScanner
  19. def nextToken(): Unit
    Definition Classes
    JavaScannerAbstractJavaScanner
  20. val pos: Int

    the token's position

    the token's position

    Definition Classes
    JavaTokenDataAbstractJavaTokenData
  21. val prev: JavaTokenData
  22. def registerDocComment(raw: String, pos: Global.Position): Unit
    Definition Classes
    DocScanner
  23. def syntaxError(msg: String): Unit

    generate an error at the current token position

  24. def syntaxError(pos: Int, msg: String): Unit

    generate an error at the given position

  25. def toString(): String
    Definition Classes
    JavaScanner → AnyRef → Any
  26. val token: Int

    the next token

    the next token

    Definition Classes
    JavaTokenDataAbstractJavaTokenData