php-parser-rs 0.1.3

A handwritten recursive-descent parser for PHP written in Rust
Documentation
1
2
3
4
5
6
7
8
9
pub mod downcast;
pub mod lexer;
pub mod node;
pub mod parser;
pub mod printer;
pub mod traverser;

pub use lexer::stream::TokenStream;
pub use parser::{construct, parse};