[][src]Struct boa::syntax::lexer::Lexer

pub struct Lexer<'a> {
    pub tokens: Vec<Token>,
    // some fields omitted
}

A lexical analyzer for JavaScript source code.

Fields

tokens: Vec<Token>

The list of tokens generated so far.

This field is public so you can use them once lexing has finished.

Implementations

impl<'a> Lexer<'a>[src]

pub fn new(buffer: &'a str) -> Lexer<'a>[src]

Returns a Lexer with a buffer inside

The buffer needs to have a lifetime as long as the Lexer instance itself

pub fn lex(&mut self) -> Result<(), LexerError>[src]

Runs the lexer until completion, returning a LexerError if there's a syntax issue, or an empty unit result

Example

fn main() -> Result<(), LexerError> {
    let buffer = String::from("Hello World");
    let mut lexer = Lexer::new(&buffer);
    lexer.lex()
}

Trait Implementations

impl<'a> Debug for Lexer<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Lexer<'a>

impl<'a> Send for Lexer<'a>

impl<'a> Sync for Lexer<'a>

impl<'a> Unpin for Lexer<'a>

impl<'a> UnwindSafe for Lexer<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,