class LegacyScanner extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LegacyScanner
  2. AnyRef
  3. 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 LegacyScanner(input: Input, dialect: Dialect)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from LegacyScanner to any2stringadd[LegacyScanner] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (LegacyScanner, B)
    Implicit
    This member is added by an implicit conversion from LegacyScanner to ArrowAssoc[LegacyScanner] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. val cbuf: collection.mutable.StringBuilder

    A character buffer for literals

  8. 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

  9. def checkNoLetter(): Unit
  10. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  11. val curr: LegacyTokenData
  12. 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.

  13. def emitIdentifierDeprecationWarnings: Boolean

    Determines whether this scanner should emit identifier deprecation warnings, e.g.

    Determines whether this scanner should emit identifier deprecation warnings, e.g. when seeing macro' or then', which are planned to become keywords in future versions of Scala.

    Attributes
    protected
  14. def ensuring(cond: (LegacyScanner) ⇒ Boolean, msg: ⇒ Any): LegacyScanner
    Implicit
    This member is added by an implicit conversion from LegacyScanner to Ensuring[LegacyScanner] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: (LegacyScanner) ⇒ Boolean): LegacyScanner
    Implicit
    This member is added by an implicit conversion from LegacyScanner to Ensuring[LegacyScanner] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean, msg: ⇒ Any): LegacyScanner
    Implicit
    This member is added by an implicit conversion from LegacyScanner to Ensuring[LegacyScanner] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean): LegacyScanner
    Implicit
    This member is added by an implicit conversion from LegacyScanner to Ensuring[LegacyScanner] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  20. final def fetchToken(): Unit

    read next token, filling TokenData fields of Scanner.

    read next token, filling TokenData fields of Scanner.

    Attributes
    protected
  21. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. def flushDoc(): Unit
  23. def foreach(f: (LegacyTokenData) ⇒ Unit): Unit

    Initialize scanner; call f on each scanned token data

  24. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from LegacyScanner to StringFormat[LegacyScanner] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  25. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  26. 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
  27. def getLitChar(): Unit

    copy current character into cbuf, interpreting any escape sequences, and advance to next character.

    copy current character into cbuf, interpreting any escape sequences, and advance to next character.

    Attributes
    protected
  28. def getNumber(): Unit

    Read a number into strVal and set base

    Read a number into strVal and set base

    Attributes
    protected
  29. def getUnquote(): Unit
  30. def getXml(): Unit
  31. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  32. def invalidEscape(): Unit
    Attributes
    protected
  33. def isAtEnd: Boolean
  34. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  35. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  36. val next: LegacyTokenData
  37. def nextToken(): Unit

    Produce next token, filling curr TokenData fields of Scanner.

  38. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  39. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  40. val prev: LegacyTokenData
  41. def putChar(c: Char): Unit

    append Unicode character to "cbuf" buffer

    append Unicode character to "cbuf" buffer

    Attributes
    protected
  42. def putCommentChar(): Unit
    Attributes
    protected
  43. val reader: CharArrayReader
  44. val reporter: Reporter
  45. def resume(lastCode: LegacyToken): Unit
  46. var sepRegions: List[LegacyToken]

    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).

  47. def skipBlockComment(): Unit
  48. def skipComment(): Boolean

    Precondition: ch == '/' Returns true if a comment was skipped.

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

    read next token and return last offset

  52. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  53. def toString(): String
    Definition Classes
    LegacyScanner → AnyRef → Any
  54. val upcomingXmlLiteralParts: Map[Offset, (Offset, Boolean)]

    A map of upcoming xml literal parts that are left to be returned in nextToken().

    A map of upcoming xml literal parts that are left to be returned in nextToken().

    The keys are offset start positions of an xml literal and the values are the respective offset end positions and a boolean indicating if the part is the last part.

  55. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  56. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  57. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  58. def [B](y: B): (LegacyScanner, B)
    Implicit
    This member is added by an implicit conversion from LegacyScanner to ArrowAssoc[LegacyScanner] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from LegacyScanner to any2stringadd[LegacyScanner]

Inherited by implicit conversion StringFormat from LegacyScanner to StringFormat[LegacyScanner]

Inherited by implicit conversion Ensuring from LegacyScanner to Ensuring[LegacyScanner]

Inherited by implicit conversion ArrowAssoc from LegacyScanner to ArrowAssoc[LegacyScanner]

Ungrouped