diff options
Diffstat (limited to 'src/parser/event_parser/grammar.rs')
-rw-r--r-- | src/parser/event_parser/grammar.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/parser/event_parser/grammar.rs b/src/parser/event_parser/grammar.rs new file mode 100644 index 000000000..dd09061aa --- /dev/null +++ b/src/parser/event_parser/grammar.rs | |||
@@ -0,0 +1,9 @@ | |||
1 | use super::Event; | ||
2 | use super::parser::Parser; | ||
3 | |||
4 | use syntax_kinds::*; | ||
5 | |||
6 | pub fn parse_file(p: &mut Parser) { | ||
7 | p.start(FILE); | ||
8 | p.finish(); | ||
9 | } \ No newline at end of file | ||