From ab03f3224078f1b8ca05bc1b65a7df4bebb5f449 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Sat, 14 Jan 2023 12:34:17 +0100 Subject: Reorganize syntax module --- src/syntax/mod.rs | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'src/syntax/mod.rs') diff --git a/src/syntax/mod.rs b/src/syntax/mod.rs index 4f159b83..81524aa2 100644 --- a/src/syntax/mod.rs +++ b/src/syntax/mod.rs @@ -4,25 +4,20 @@ pub mod ast; mod incremental; mod kind; -mod linked; +mod lexer; mod node; mod parser; mod parsing; mod resolve; mod source; mod span; -mod tokens; pub use self::kind::*; -pub use self::linked::*; +pub use self::lexer::*; pub use self::node::*; pub use self::parsing::*; pub use self::source::*; pub use self::span::*; -pub use self::tokens::*; use incremental::reparse; use parser::*; - -#[cfg(test)] -mod tests; -- cgit v1.2.3