tree_sitter_edit/lib.rs
1//! tree-sitter-edit is a crate for printing modified tree-sitter parse trees,
2//! intended for use in multi-language code refactoring, linting, or
3//! modification (codemod) tools.
4
5mod editor;
6mod editors;
7mod id;
8mod print;
9mod traversal;
10
11pub use editor::*;
12pub use editors::*;
13pub use id::*;
14pub use print::*;