diff options
author | Lukas Wirth <[email protected]> | 2021-05-08 22:14:08 +0100 |
---|---|---|
committer | Lukas Wirth <[email protected]> | 2021-05-08 22:14:08 +0100 |
commit | 174f043c8d9186d2bec7c9a45b7a6ca68b232c80 (patch) | |
tree | ce526f46adb8a3e61e5c79adb2bb4eeb4ab0b8b6 /crates/parser/src | |
parent | 96c5df9b171730ad69e130e074584684cee35014 (diff) |
Add `=` to pattern recovery
Diffstat (limited to 'crates/parser/src')
-rw-r--r-- | crates/parser/src/grammar/patterns.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/parser/src/grammar/patterns.rs b/crates/parser/src/grammar/patterns.rs index 3ab347834..f1d1f9eaa 100644 --- a/crates/parser/src/grammar/patterns.rs +++ b/crates/parser/src/grammar/patterns.rs | |||
@@ -83,7 +83,7 @@ fn pattern_single_r(p: &mut Parser, recovery_set: TokenSet) { | |||
83 | } | 83 | } |
84 | 84 | ||
85 | const PAT_RECOVERY_SET: TokenSet = | 85 | const PAT_RECOVERY_SET: TokenSet = |
86 | TokenSet::new(&[T![let], T![if], T![while], T![loop], T![match], T![')'], T![,]]); | 86 | TokenSet::new(&[T![let], T![if], T![while], T![loop], T![match], T![')'], T![,], T![=]]); |
87 | 87 | ||
88 | fn atom_pat(p: &mut Parser, recovery_set: TokenSet) -> Option<CompletedMarker> { | 88 | fn atom_pat(p: &mut Parser, recovery_set: TokenSet) -> Option<CompletedMarker> { |
89 | let m = match p.nth(0) { | 89 | let m = match p.nth(0) { |