aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorChristopher Durham <[email protected]>2018-01-28 02:36:28 +0000
committerChristopher Durham <[email protected]>2018-01-28 02:52:22 +0000
commit4244948c6b1a62bd0e1ef276d1f0cc22c36f6f66 (patch)
tree83d1a4bbaa4be96f76c2d48c00ad479173f61274 /src/lib.rs
parent50b9012e10d2fa74294547c25642b4a69fed4bda (diff)
Convert SyntaxKind to an enum
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 87a9d11ea..ad333582c 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -22,8 +22,6 @@ mod tree;
22mod lexer; 22mod lexer;
23mod parser; 23mod parser;
24 24
25#[cfg_attr(rustfmt, rustfmt_skip)]
26#[allow(missing_docs)]
27pub mod syntax_kinds; 25pub mod syntax_kinds;
28pub use text::{TextRange, TextUnit}; 26pub use text::{TextRange, TextUnit};
29pub use tree::{File, FileBuilder, Node, Sink, SyntaxKind, Token}; 27pub use tree::{File, FileBuilder, Node, Sink, SyntaxKind, Token};