diff options
author | Zac Winter <[email protected]> | 2018-09-06 14:54:54 +0100 |
---|---|---|
committer | Zac Winter <[email protected]> | 2018-09-06 14:57:04 +0100 |
commit | 518cc87496494d639f0a6bf189f1a3567bcfa328 (patch) | |
tree | ac9a756c5cfc83fed671f57e20a2f05d8b00e539 /crates/libsyntax2/src/grammar | |
parent | 751562d2f77a7bc3eeeffbf8e53c9f3515fa9653 (diff) |
Moved TokenSet into it's own file.
Diffstat (limited to 'crates/libsyntax2/src/grammar')
-rw-r--r-- | crates/libsyntax2/src/grammar/mod.rs | 3 |
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; | |||
32 | mod types; | 32 | mod types; |
33 | 33 | ||
34 | use { | 34 | use { |
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 | }; |
38 | pub(crate) use self::{ | 39 | pub(crate) use self::{ |