luaparser/lib.rs
1//! A parser that reads Lua 5.1 code and produces an abstract syntax tree (AST).
2mod parser;
3mod fast_parser;
4
5#[cfg(any(test, feature = "nodes"))]
6pub mod nodes;
7#[cfg(any(test, feature = "nodes"))]
8pub mod parser_impl;
9
10pub use parser::{builders, NodeTypes, ParsingError};
11pub use fast_parser::FastParser;