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 f0fe45f commit eb4e8fcCopy full SHA for eb4e8fc
src/tokenizer.rs
@@ -2033,9 +2033,9 @@ impl<'a> Tokenizer<'a> {
2033
chars.next(); // consume next
2034
} else if dialect_of!(self is SnowflakeDialect) {
2035
s.push('\\');
2036
- s.push(*next);
2037
chars.next();
2038
- if let Some(_) = chars.peek() {
+ if let Some(next) = chars.peek() {
+ s.push(*next);
2039
2040
}
2041
} else {
0 commit comments