Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/parser/src/lib.rs')
| -rw-r--r-- | crates/parser/src/lib.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/crates/parser/src/lib.rs b/crates/parser/src/lib.rs index fb5280d197..da62590ab6 100644 --- a/crates/parser/src/lib.rs +++ b/crates/parser/src/lib.rs @@ -142,7 +142,6 @@ pub enum ParserEntryPoint { Expr, StatementOptionalSemi, Pattern, - Item, Attr, } @@ -164,7 +163,6 @@ pub fn parse(inp: &Input, entry_point: ParserEntryPoint) -> Output { ParserEntryPoint::Path => grammar::entry::prefix::path, ParserEntryPoint::Expr => grammar::entry::prefix::expr, ParserEntryPoint::Pattern => grammar::entry::prefix::pat, - ParserEntryPoint::Item => grammar::entry::prefix::item, ParserEntryPoint::StatementOptionalSemi => grammar::entry_points::stmt_optional_semi, ParserEntryPoint::Attr => grammar::entry_points::attr, }; |