aboutsummaryrefslogtreecommitdiff
path: root/src/tree/mod.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2017-12-31 17:30:21 +0000
committerAleksey Kladov <[email protected]>2017-12-31 17:30:21 +0000
commit9e4c28820146ccaf29ecbce9802aeba80183851a (patch)
treeff9097e6588c6675906d3fb0f4bbaf4ef5efe5c7 /src/tree/mod.rs
parent9c804accf19d1a93739a7cbfdd1da5528833d6c3 (diff)
File builder growndwork
Diffstat (limited to 'src/tree/mod.rs')
-rw-r--r--src/tree/mod.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tree/mod.rs b/src/tree/mod.rs
index 2ac25e795..b90a5d7d3 100644
--- a/src/tree/mod.rs
+++ b/src/tree/mod.rs
@@ -3,6 +3,9 @@ use syntax_kinds::syntax_info;
3 3
4use std::fmt; 4use std::fmt;
5 5
6mod file_builder;
7pub use self::file_builder::FileBuilder;
8
6#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] 9#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
7pub struct SyntaxKind(pub(crate) u32); 10pub struct SyntaxKind(pub(crate) u32);
8 11