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