syntax.Lexer
Lexer
A type that turns a buffer into a token stream.
Required methods
buffer
Show source codeHide source code
fn pub mut buffer -> mut Buffer
fn pub mut buffer -> mut Buffer
The buffer to turn into a token stream.
next
Show source codeHide source code
fn pub mut next -> Option[Token]
fn pub mut next -> Option[Token]
Returns the next token, if any.
Default methods
each
Show source codeHide source code
fn pub inline move each(fun: fn (Token)) {
loop {
match self.next {
case Some(v) -> fun.call(v)
case _ -> break
}
}
}
fn pub inline move each(fun: fn (Token))
Calls the provided closure for each token in the token stream.
to_array
Show source codeHide source code
fn pub move to_array -> Array[Token] {
let tokens = []
each(fn (v) { tokens.push(v) })
tokens
}
fn pub move to_array -> Array[Token]
Returns an Array
containing all the tokens in the token stream.
Implementations
Lexer
impl Lexer for Lexer
Lexer
impl Lexer for Lexer
Lexer
impl Lexer for Lexer
Lexer
impl Lexer for Lexer
Lexer
impl Lexer for Lexer
Lexer
impl Lexer for Lexer
Lexer
impl Lexer for Lexer
Lexer
impl Lexer for Lexer