aboutsummaryrefslogtreecommitdiff
path: root/src/parser/event_parser/grammar/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser/event_parser/grammar/mod.rs')
-rw-r--r--src/parser/event_parser/grammar/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser/event_parser/grammar/mod.rs b/src/parser/event_parser/grammar/mod.rs
index 82f8b7f3e..b87f3ca8a 100644
--- a/src/parser/event_parser/grammar/mod.rs
+++ b/src/parser/event_parser/grammar/mod.rs
@@ -11,7 +11,7 @@ mod paths;
11pub(crate) fn file(p: &mut Parser) { 11pub(crate) fn file(p: &mut Parser) {
12 let file = p.start(); 12 let file = p.start();
13 p.eat(SHEBANG); 13 p.eat(SHEBANG);
14 items::mod_contents(p); 14 items::mod_contents(p, false);
15 file.complete(p, FILE); 15 file.complete(p, FILE);
16} 16}
17 17