Skip to main content

wxml_parser_rs/
lib.rs

1mod parser;
2
3pub use parser::{
4  parse_for_eslint_json,
5  parse_for_eslint_json_string,
6  parse_json,
7  parse_json_string,
8  parse_program_with_mode,
9};
10
11pub mod ir {
12  pub use crate::parser::ir::*;
13}