mirror of
https://github.com/tree-sitter/tree-sitter.git
synced 2026-09-12 16:36:27 -04:00
26 lines
389 B
Rust
26 lines
389 B
Rust
#![doc = include_str!("../README.md")]
|
|
|
|
pub mod fuzz;
|
|
pub mod highlight;
|
|
pub mod init;
|
|
pub mod input;
|
|
pub mod logger;
|
|
pub mod parse;
|
|
pub mod playground;
|
|
pub mod query;
|
|
pub mod query_testing;
|
|
pub mod tags;
|
|
pub mod test;
|
|
pub mod test_highlight;
|
|
pub mod test_tags;
|
|
pub mod util;
|
|
pub mod version;
|
|
pub mod wasm;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|
|
|
|
// To run compile fail tests
|
|
#[cfg(doctest)]
|
|
mod tests;
|