php-parser/grammar/README.md

27 lines
1.1 KiB
Markdown
Raw Normal View History

2011-06-26 20:56:35 +02:00
What do all those files mean?
=============================
* `php5.y`: PHP 5 grammer written in a pseudo language
* `analyze.php`: Analyzes the grammer and outputs some info about it
* `rebuildParser.php`: Preprocesses the grammar and builds the parser using `kmyacc`
* `kmyacc.php.parser`: A `kmyacc` parser prototype file for PHP
2011-06-26 20:56:35 +02:00
.phpy pseudo language
=====================
2011-06-26 20:56:35 +02:00
The `.y` file is a normal grammer in `kmyacc` (`yacc`) style, with some transformations
2011-06-26 20:56:35 +02:00
applied to it:
* Nodes are created using the syntax `Name[..., ...]`. This is transformed into
2015-04-30 21:58:45 +02:00
`new Name(..., ..., attributes())`
* Some function-like constructs are resolved (see `rebuildParser.php` for a list)
Building the parser
===================
In order to rebuild the parser, you need [moriyoshi's fork of kmyacc](https://github.com/moriyoshi/kmyacc-forked).
After you compiled/installed it, run the `rebuildParser.php` script.
2015-04-30 21:58:45 +02:00
By default only the `Parser.php` is built. If you want to additionally emit debug symbols and create `y.output`, run the
script with `--debug`. If you want to retain the preprocessed grammar pass `--keep-tmp-grammar`.