mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-27 04:24:43 +01:00
3701e02d32
Now the lexer is injected only once when creating the parser. Instead of $parser = new PHPParser_Parser; $parser->parse(new PHPParser_Lexer($code)); $parser->parse(new PHPParser_Lexer($code2)); you write: $parser = new PHPParser_Parser(new PHPParser_Lexer); $parser->parse($code); $parser->parse($code2); |
||
---|---|---|
.. | ||
analyze.php | ||
kmyacc.php.parser | ||
README.md | ||
rebuildParser.php | ||
zend_language_parser.phpy |
What do all those files mean?
zend_language_parser.y
: Original PHP grammer this parser is based onzend_language_parser.phpy
: PHP grammer written in a pseudo languageanalyze.php
: Analyzes the.phpy
-grammer and outputs some info about itrebuildParser.php
: Preprocesses the.phpy
-grammar and builds the parser usingkmyacc
kmyacc.php.parser
: Akmyacc
parser prototype file for PHP
.phpy pseudo language
The .phpy
file is a normal grammer in kmyacc
(yacc
) style, with some transformations
applied to it:
- Nodes are created using the syntax
Name[..., ...]
. This is transformed intonew PHPParser_Node_Name(..., ..., $line, $docComment)
Name::abc
is transformed toPHPParser_Node_Name::abc
- Some function-like constructs are resolved (see
rebuildParser.php
for a list) - Associative arrays are written as
[key: value, ...]
, which is transformed toarray('key' => value, ...)
Building the parser
In order to rebuild the parser, you need moriyoshi's fork of kmyacc.
After you compiled/installed it, run the rebuildParser.php
file.
By default only the Parser.php is built. If you want to build the Parser/Debug.php and the y.output
file you need to call the file with the debug option: rebuildParser.php?debug
.