php_parser/
lib.rs

1pub mod ast;
2pub mod lexer;
3pub mod line_index;
4pub mod parser;
5pub mod span;
6
7pub use span::Span;