We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0026bb7 commit 75cb98eCopy full SHA for 75cb98e
1 file changed
src/parser/mod.rs
@@ -4561,11 +4561,7 @@ impl<'a> Parser<'a> {
4561
return Ok(vec![]);
4562
}
4563
4564
- if end_token == Token::SemiColon
4565
- && self
4566
- .dialect
4567
- .supports_statements_without_semicolon_delimiter()
4568
- {
+ if end_token == Token::SemiColon && !self.options.require_semicolon_stmt_delimiter {
4569
if let Token::Word(ref kw) = self.peek_token().token {
4570
if kw.keyword != Keyword::NoKeyword {
4571
0 commit comments