wxml-parser-rs 0.0.2

Core WXML parser implemented in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod parser;

pub use parser::{
  parse_for_eslint_json,
  parse_for_eslint_json_string,
  parse_json,
  parse_json_string,
  parse_program_with_mode,
};

pub mod ir {
  pub use crate::parser::ir::*;
}