Module boa::syntax::lexer

source ·
Expand description

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

A lexical analyzer for JavaScript source code
An error that occurred during lexing or compiling of the source input.