[][src]Module boa::syntax::lexer

Lexical analysis (tokenizing/lexing). A lexical analyzer for JavaScript source code.

The Lexer splits its input source code into a sequence of input elements called tokens, represented by the Token structure. It also removes whitespace and comments and attaches them to the next token.

Structs

Lexer

A lexical analyzer for JavaScript source code

LexerError

An error that occurred during lexing or compiling of the source input.