We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 392fdc9 commit 57a8ec5Copy full SHA for 57a8ec5
src/tokenizer.rs
@@ -2031,11 +2031,11 @@ impl<'a> Tokenizer<'a> {
2031
s.push(ch);
2032
s.push(*next);
2033
chars.next(); // consume next
2034
- //if [\\]\\b -> [\\]b
2035
- } else if dialect_of!(self is SnowflakeDialect) && *next == '\\' {
+ //if [\\]\\b -> [\\]b
+ } else if dialect_of!(self is SnowflakeDialect) {
2036
2037
chars.next();
2038
- //if [\\]b -> \\[b]
+ //if [\\]b -> \\[b]
2039
if let Some(next) = chars.peek() {
2040
2041
0 commit comments