diff options
Diffstat (limited to 'crates/libsyntax2/src')
-rw-r--r-- | crates/libsyntax2/src/parser_api.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/libsyntax2/src/parser_api.rs b/crates/libsyntax2/src/parser_api.rs index 7d97159dd..772d753af 100644 --- a/crates/libsyntax2/src/parser_api.rs +++ b/crates/libsyntax2/src/parser_api.rs | |||
@@ -118,7 +118,7 @@ impl<'t> Parser<'t> { | |||
118 | pub(crate) fn err_recover(&mut self, message: &str, recovery: TokenSet) { | 118 | pub(crate) fn err_recover(&mut self, message: &str, recovery: TokenSet) { |
119 | if self.at(SyntaxKind::L_CURLY) | 119 | if self.at(SyntaxKind::L_CURLY) |
120 | || self.at(SyntaxKind::R_CURLY) | 120 | || self.at(SyntaxKind::R_CURLY) |
121 | || recovery.contains(self.current()) { | 121 | || self.at_ts(recovery) { |
122 | self.error(message); | 122 | self.error(message); |
123 | } else { | 123 | } else { |
124 | let m = self.start(); | 124 | let m = self.start(); |