phprs 0.1.7

A PHP interpreter with build/package manager written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Lexer (Token Scanner)
//!
//! PHP language scanner
//!
//! This module implements the PHP tokenizer/lexer, now modularized for better maintainability.

mod tokens;
mod keywords;
mod readers;
mod core;

#[cfg(test)]
mod tests;

pub use tokens::*;
pub use keywords::*;
pub use core::*;