We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77624b4 commit 3f031caCopy full SHA for 3f031ca
src/tokenizer.rs
@@ -2018,10 +2018,8 @@ impl<'a> Tokenizer<'a> {
2018
chars.next(); // consume next
2019
} else if dialect_of!(self is SnowflakeDialect) {
2020
s.push(ch);
2021
- chars.next();
2022
- if let Some(next) = chars.peek() {
2023
- s.push(*next);
2024
+ if let Some(next) = chars.next() {
+ s.push(next);
2025
if let Some(next) = chars.peek() {
2026
if *next == settings.quote_style {
2027
num_consecutive_quotes += 1;
0 commit comments