summaryrefslogtreecommitdiff
path: root/src/syntax/ast/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntax/ast/mod.rs')
-rw-r--r--src/syntax/ast/mod.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/syntax/ast/mod.rs b/src/syntax/ast/mod.rs
deleted file mode 100644
index 60a958a4..00000000
--- a/src/syntax/ast/mod.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-//! Abstract syntax tree definition.
-
-mod expr;
-mod lit;
-mod node;
-
-pub use expr::*;
-pub use lit::*;
-pub use node::*;
-
-use super::{Ident, SpanVec, Spanned};
-
-/// A collection of nodes which form a tree together with the nodes' children.
-pub type SynTree = SpanVec<SynNode>;