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
- Alphabetic
- By Inheritance
- Lexer
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Value Members
- 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.
- ch
the given delimiter character to compare current token with
- Exceptions thrown
Lexer.MalformedInput
if the current tokentoken
is not a delimiter, or consists of a character different fromc
.
- 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
Lexer.MalformedInput
if the two tokens do not match.
- 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
Lexer.MalformedInput
if character does not match
- var ch: Char
The last-read character
- def error(msg: String): Nothing
Always throws a Lexer.MalformedInput exception with given error message.
Always throws a Lexer.MalformedInput exception with given error message.
- msg
the error message
- def getNumber(): Unit
Reads a numeric literal, and forms an
IntLit
orFloatLit
token from it.Reads a numeric literal, and forms an
IntLit
orFloatLit
token from it. Last-read input characterch
must be either-
or a digit.- Exceptions thrown
Lexer.MalformedInput
if lexeme not recognized as a numeric literal.
- 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 characterch
must be opening"
-quote.- Exceptions thrown
Lexer.MalformedInput
if lexeme not recognized as a string literal.
- def nextChar(): Unit
Reads next character into
ch
- def nextToken(): Unit
Skips whitespace and reads next lexeme into
token
Skips whitespace and reads next lexeme into
token
- Exceptions thrown
Lexer.MalformedInput
if lexeme not recognized as a valid token
- var pos: Long
The number of characters read so far
- var token: Token
The last-read token
- var tokenPos: Long
The number of characters read before the start of the last-read token
The Scala compiler and reflection APIs.