Skip to content

Commit 5d8d894

Browse files
committed
the right way I suppose v20
1 parent f53532d commit 5d8d894

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/tokenizer.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2032,11 +2032,7 @@ impl<'a> Tokenizer<'a> {
20322032
s.push(*next);
20332033
chars.next(); // consume next
20342034
} else if dialect_of!(self is SnowflakeDialect) {
2035-
chars.next();
2036-
if let Some(next) = chars.peek() {
2037-
s.push(*next);
2038-
chars.next();
2039-
}
2035+
s.push(*next);
20402036
} else {
20412037
let n = match next {
20422038
'0' => '\0',

0 commit comments

Comments
 (0)