diff options
Diffstat (limited to 'crates/libsyntax2/src/grammar/mod.rs')
-rw-r--r-- | crates/libsyntax2/src/grammar/mod.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/libsyntax2/src/grammar/mod.rs b/crates/libsyntax2/src/grammar/mod.rs index e3ca2714c..46ba8a89a 100644 --- a/crates/libsyntax2/src/grammar/mod.rs +++ b/crates/libsyntax2/src/grammar/mod.rs | |||
@@ -35,6 +35,10 @@ use { | |||
35 | parser_api::{Marker, CompletedMarker, Parser, TokenSet}, | 35 | parser_api::{Marker, CompletedMarker, Parser, TokenSet}, |
36 | SyntaxKind::{self, *}, | 36 | SyntaxKind::{self, *}, |
37 | }; | 37 | }; |
38 | pub(crate) use self::{ | ||
39 | expressions::block, | ||
40 | items::named_field_def_list, | ||
41 | }; | ||
38 | 42 | ||
39 | pub(crate) fn file(p: &mut Parser) { | 43 | pub(crate) fn file(p: &mut Parser) { |
40 | let file = p.start(); | 44 | let file = p.start(); |