aboutsummaryrefslogtreecommitdiff
path: root/crates/libsyntax2/src/grammar/mod.rs
diff options
context:
space:
mode:
authorZac Winter <[email protected]>2018-09-06 14:54:54 +0100
committerZac Winter <[email protected]>2018-09-06 14:57:04 +0100
commit518cc87496494d639f0a6bf189f1a3567bcfa328 (patch)
treeac9a756c5cfc83fed671f57e20a2f05d8b00e539 /crates/libsyntax2/src/grammar/mod.rs
parent751562d2f77a7bc3eeeffbf8e53c9f3515fa9653 (diff)
Moved TokenSet into it's own file.
Diffstat (limited to 'crates/libsyntax2/src/grammar/mod.rs')
-rw-r--r--crates/libsyntax2/src/grammar/mod.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/libsyntax2/src/grammar/mod.rs b/crates/libsyntax2/src/grammar/mod.rs
index 339664af3..e19805b9d 100644
--- a/crates/libsyntax2/src/grammar/mod.rs
+++ b/crates/libsyntax2/src/grammar/mod.rs
@@ -32,7 +32,8 @@ mod type_params;
32mod types; 32mod types;
33 33
34use { 34use {
35 parser_api::{Marker, CompletedMarker, Parser, TokenSet}, 35 token_set::TokenSet,
36 parser_api::{Marker, CompletedMarker, Parser},
36 SyntaxKind::{self, *}, 37 SyntaxKind::{self, *},
37}; 38};
38pub(crate) use self::{ 39pub(crate) use self::{