2018-01-02 12:41:54 +00:00
|
|
|
<!--
|
|
|
|
Title: PHP Parser
|
|
|
|
Description: A Parser for PHP written in Go.
|
|
|
|
Author: Slizov Vadim
|
|
|
|
-->
|
|
|
|
|
|
|
|
# PHP-Parser
|
2018-01-05 09:53:00 +00:00
|
|
|
A Parser for PHP written in Go inspired by [Nikic PHP Parser](https://github.com/nikic/PHP-Parser)
|
2018-01-02 12:34:26 +00:00
|
|
|
|
2018-01-02 12:41:54 +00:00
|
|
|
## Roadmap
|
2018-01-02 12:34:26 +00:00
|
|
|
- [X] Lexer
|
|
|
|
- [x] PHP 7 syntax analyzer
|
|
|
|
- [x] AST nodes
|
2018-01-02 12:41:54 +00:00
|
|
|
- [x] AST visitor
|
2018-01-04 22:33:50 +00:00
|
|
|
- [x] AST dumper
|
|
|
|
- [x] node position
|
|
|
|
- [ ] handling comments
|
2018-01-02 12:41:54 +00:00
|
|
|
- [ ] Tests
|
|
|
|
- [ ] Documentation
|
2018-01-02 12:34:26 +00:00
|
|
|
- [ ] PHP 5 syntax analyzer
|
|
|
|
- [ ] Code flow graph
|
2018-01-05 09:53:00 +00:00
|
|
|
- [ ] Pretty printer
|