tree-sitter/cli/src/lib.rs

17 lines
237 B
Rust
Raw Normal View History

pub mod config;
pub mod error;
pub mod generate;
2019-02-19 11:24:50 -08:00
pub mod highlight;
pub mod loader;
pub mod logger;
pub mod parse;
pub mod query;
pub mod test;
pub mod test_highlight;
pub mod util;
2019-04-23 14:29:46 -07:00
pub mod wasm;
2019-05-13 21:51:17 -07:00
pub mod web_ui;
#[cfg(test)]
mod tests;