aboutsummaryrefslogtreecommitdiff
path: root/crates/libsyntax2/src/grammar/mod.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-24 09:45:14 +0100
committerAleksey Kladov <[email protected]>2018-08-24 09:45:50 +0100
commit89e56c364f3d0a9d5a12ae488185abc1ea69df4a (patch)
treefd619bd07dbb2ec351a0c23549dc31dad64e7641 /crates/libsyntax2/src/grammar/mod.rs
parent719710a13256a32b9fcbf06c1ff43f8961b9b2e6 (diff)
Labeled expressions
Diffstat (limited to 'crates/libsyntax2/src/grammar/mod.rs')
-rw-r--r--crates/libsyntax2/src/grammar/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/libsyntax2/src/grammar/mod.rs b/crates/libsyntax2/src/grammar/mod.rs
index 0f168eb60..25887921b 100644
--- a/crates/libsyntax2/src/grammar/mod.rs
+++ b/crates/libsyntax2/src/grammar/mod.rs
@@ -32,7 +32,7 @@ mod type_params;
32mod types; 32mod types;
33 33
34use { 34use {
35 parser_api::{CompletedMarker, Parser, TokenSet}, 35 parser_api::{Marker, CompletedMarker, Parser, TokenSet},
36 SyntaxKind::{self, *}, 36 SyntaxKind::{self, *},
37}; 37};
38 38