nanvm_lib/parser/mod.rs
1// Analyzer is a temporary name of a refactored parser that will be merged with the main parser.
2// It uses src/ast APIs.
3#![allow(clippy::module_inception)]
4pub mod analyzer;
5pub mod any_state;
6pub mod const_state;
7pub mod json_state;
8pub mod parser;
9pub mod path;
10pub mod root_state;
11pub mod shared;