Packages

class JavaUnitScanner extends JavaScanner

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

Instance Constructors

  1. new JavaUnitScanner(unit: Global.CompilationUnit)

Type Members

  1. type ScanPosition = Int
    Definition Classes
    JavaTokenDataAbstractJavaTokenData

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val NoPos: Int
    Definition Classes
    JavaTokenDataAbstractJavaTokenData
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. val base: Int

    the base of a number

    the base of a number

    Definition Classes
    JavaTokenData
  7. def beginDocComment(prefix: String): Unit
    Attributes
    protected
    Definition Classes
    DocScanner
  8. val cbuf: collection.mutable.StringBuilder

    character buffer for literals

    character buffer for literals

    Definition Classes
    JavaScanner
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  10. def copyFrom(td: JavaTokenData): Unit
    Definition Classes
    JavaTokenData
  11. def currentPos: Global.Position
    Definition Classes
    JavaScannerAbstractJavaScanner
  12. def deprecationWarning(pos: Int, msg: String, since: String): Unit
    Definition Classes
    JavaUnitScannerScannerCommon
  13. 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
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  16. def error(pos: Int, msg: String): Unit
    Definition Classes
    JavaUnitScannerScannerCommon
  17. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def finishDocComment(): Unit
    Attributes
    protected
    Definition Classes
    DocScanner
  19. def floatVal(negated: Boolean): Double

    convert name, base to double value

    convert name, base to double value

    Definition Classes
    JavaScannerAbstractJavaScanner
  20. def floatVal: Double
    Definition Classes
    JavaScannerAbstractJavaScanner
  21. def flushDoc(): Global.DocComment
    Definition Classes
    DocScanner
  22. implicit def g2p(pos: Int): Global.Position
    Definition Classes
    JavaUnitScannerAbstractJavaScanner
  23. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  24. def getFraction(): Unit

    read fractional part and exponent of floating point number if one is present.

    read fractional part and exponent of floating point number if one is present.

    Attributes
    protected
    Definition Classes
    JavaScanner
  25. def getNumber(): Unit

    read a number into name and set base

    read a number into name and set base

    Attributes
    protected
    Definition Classes
    JavaScanner
  26. def getlitch(): AnyVal

    read next character in character or string literal:

    read next character in character or string literal:

    Attributes
    protected
    Definition Classes
    JavaScanner
  27. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  28. var in: JavaCharArrayReader
    Definition Classes
    JavaScanner
  29. def incompleteInputError(pos: Int, msg: String): Unit
    Definition Classes
    JavaUnitScannerScannerCommon
  30. 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
    JavaScanner
  31. def init(): Unit

    INIT: read lookahead character and token.

    INIT: read lookahead character and token.

    Definition Classes
    JavaScanner
  32. def intVal(negated: Boolean): Long

    convert name to long value

    convert name to long value

    Definition Classes
    JavaScannerAbstractJavaScanner
  33. def intVal: Long
    Definition Classes
    JavaScannerAbstractJavaScanner
  34. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  35. val lastPos: Int

    the first character position after the previous token

    the first character position after the previous token

    Definition Classes
    JavaTokenData
  36. def lookaheadToken: Int
    Definition Classes
    JavaScanner
  37. val name: Global.TermName

    the name of an identifier or token

    the name of an identifier or token

    Definition Classes
    JavaTokenDataAbstractJavaTokenData
  38. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  39. val next: JavaTokenData

    we need one token lookahead

    we need one token lookahead

    Definition Classes
    JavaScannerAbstractJavaScanner
  40. def nextToken(): Unit
    Definition Classes
    JavaScannerAbstractJavaScanner
  41. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  42. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  43. val pos: Int

    the token's position

    the token's position

    Definition Classes
    JavaTokenDataAbstractJavaTokenData
  44. val prev: JavaTokenData
    Definition Classes
    JavaScanner
  45. def processCommentChar(): Unit
    Attributes
    protected
    Definition Classes
    DocScanner
  46. def putChar(c: Char): Unit

    append Unicode character to "lit" buffer

    append Unicode character to "lit" buffer

    Attributes
    protected
    Definition Classes
    JavaScanner
  47. final def putCommentChar(): Unit
    Attributes
    protected
    Definition Classes
    JavaScanner
  48. def registerDocComment(raw: String, pos: Global.Position): Unit
    Definition Classes
    DocScanner
  49. final def skipBlockComment(isDoc: Boolean): Unit
    Attributes
    protected
    Definition Classes
    JavaScanner
    Annotations
    @tailrec()
  50. final def skipComment(): Boolean
    Attributes
    protected
    Definition Classes
    JavaScanner
  51. final def skipLineComment(): Unit
    Attributes
    protected
    Definition Classes
    JavaScanner
    Annotations
    @tailrec()
  52. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  53. def syntaxError(msg: String): Unit

    generate an error at the current token position

    generate an error at the current token position

    Definition Classes
    JavaScanner
  54. def syntaxError(pos: Int, msg: String): Unit

    generate an error at the given position

    generate an error at the given position

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

    the next token

    the next token

    Definition Classes
    JavaTokenDataAbstractJavaTokenData
  57. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  58. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  59. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from JavaScanner

Inherited from JavaScanners.DocScanner

Inherited from Cloneable

Inherited from java.lang.Cloneable

Inherited from JavaTokenData

Inherited from AbstractJavaScanner

Inherited from AbstractJavaTokenData

Inherited from AnyRef

Inherited from Any

Ungrouped