Expand description
PHP parser — builds an AST from the token stream.
Split into modules for maintainability:
statements— control flow, functions, classesexpressions— operators, calls, literalstests— comprehensive parser tests
Structs§
- Parse
Error - A parse error with its location in the source.
- Parser
- Recursive descent PHP parser. Produces a typed AST from a token stream.