Expand description
JavaScript Parser
Parses a token stream from the lexer into an abstract syntax tree (AST). Uses arena allocation (Vec + index) for AST nodes, Pratt parsing for expressions (precedence climbing), and recursive descent for statements.
Structs§
Enums§
Constants§
- AST_
NONE - Sentinel value for “no node”
Type Aliases§
- AstNode
Id - Arena index for AST nodes