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

  14. 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
  15. 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
  16. 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
  17. 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
  18. 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
  19. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  21. final def fetchToken(): Unit

    read next token, filling TokenData fields of Scanner.

    read next token, filling TokenData fields of Scanner.

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

    Initialize scanner; call f on each scanned token data

  25. 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()
  26. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  27. 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
  28. 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
  29. def getNumber(): Unit

    Read a number into strVal and set base

    Read a number into strVal and set base

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

    Produce next token, filling curr TokenData fields of Scanner.

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

    append Unicode character to "cbuf" buffer

    append Unicode character to "cbuf" buffer

    Attributes
    protected
  43. def putCommentChar(): Unit
    Attributes
    protected
  44. val reader: CharArrayReader
  45. val reporter: Reporter
  46. def resume(lastCode: LegacyToken): Unit
  47. 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).

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

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

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

    read next token and return last offset

  53. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  54. def toString(): String
    Definition Classes
    LegacyScanner → AnyRef → Any
  55. 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.

  56. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  57. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  58. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  59. 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