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 10f8224 commit 78c4580Copy full SHA for 78c4580
src/tokenizer.rs
@@ -971,8 +971,10 @@ impl<'a> Tokenizer<'a> {
971
match chars.peek() {
972
Some('\'') => {
973
// N'...' - a <national character string literal>
974
- let backslash_escape = self.dialect.supports_string_literal_backslash_escape();
975
- let s = self.tokenize_single_quoted_string(chars, '\'', backslash_escape)?;
+ let backslash_escape =
+ self.dialect.supports_string_literal_backslash_escape();
976
+ let s =
977
+ self.tokenize_single_quoted_string(chars, '\'', backslash_escape)?;
978
Ok(Some(Token::NationalStringLiteral(s)))
979
}
980
_ => {
0 commit comments