wasm_webidl_bindings_text_parser/
lib.rs

1//! Working with the text format.
2
3mod actions;
4mod error;
5mod lexer;
6mod parser;
7
8pub use actions::Actions;
9pub use parser::parse_with_actions;