scala.tools.nsc.io

Lexer

class Lexer extends AnyRef

A simple lexer for tokens as they are used in JSON, plus parens (, ) Tokens understood are:

(, ), [, ], {, }, :, ,, true, false, null, strings (syntax as in JSON), integer numbers (syntax as in JSON: -?(0|\d+) floating point numbers (syntax as in JSON: -?(0|\d+)(\.\d+)?((e|E)(+|-)?\d+)?) The end of input is represented as its own token, EOF. Lexers can keep one token lookahead

Source
Lexer.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Lexer
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Lexer(rd: Reader)

    rd

    the reader from which characters are read.

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def accept(ch: Char): Unit

    The current token is a delimiter consisting of given character, reads next token, otherwise raises an error.

    The current token is a delimiter consisting of given character, reads next token, otherwise raises an error.

    Exceptions thrown
    MalformedInput

    if the the current token token is not a delimiter, or consists of a character different from c.

  7. def accept(t: Token): Unit

    If current token equals given token, reads next token, otherwise raises an error.

    If current token equals given token, reads next token, otherwise raises an error.

    t

    the given token to compare current token with

    Exceptions thrown
    MalformedInput

    if the two tokens do not match.

  8. def acceptChar(c: Char): Unit

    If last-read character equals given character, reads next character, otherwise raises an error

    If last-read character equals given character, reads next character, otherwise raises an error

    c

    the given character to compare with last-read character

    Exceptions thrown
    MalformedInput

    if character does not match

  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. var ch: Char

    The last-read character

  11. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  12. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  14. def error(msg: String): Nothing

    Always throws a MalformedInput exception with given error message.

    Always throws a MalformedInput exception with given error message.

    msg

    the error message

  15. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  16. final def getClass(): java.lang.Class[_]

    Definition Classes
    AnyRef → Any
  17. def getNumber(): Unit

    Reads a numeric literal, and forms an IntLit or FloatLit token from it.

    Reads a numeric literal, and forms an IntLit or FloatLit token from it. Last-read input character ch must be either - or a digit.

    Exceptions thrown
    MalformedInput

    if lexeme not recognized as a numeric literal.

  18. def getString(): Unit

    Reads a string literal, and forms a StringLit token from it.

    Reads a string literal, and forms a StringLit token from it. Last-read input character ch must be opening "-quote.

    Exceptions thrown
    MalformedInput

    if lexeme not recognized as a string literal.

  19. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  20. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. def nextChar(): Unit

    Reads next character into ch

  23. def nextToken(): Unit

    Skips whitespace and reads next lexeme into token

    Skips whitespace and reads next lexeme into token

    Exceptions thrown
    MalformedInput

    if lexeme not recognized as a valid token

  24. final def notify(): Unit

    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  26. var pos: Long

    The number of characters read so far

  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  28. def toString(): String

    Definition Classes
    AnyRef → Any
  29. var token: Token

    The last-read token

  30. var tokenPos: Long

    The number of characters read before the start of the last-read token

  31. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  32. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  33. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any