Lexer: Support newline characters in strings

This commit is contained in:
Riyyi
2023-04-07 23:38:41 +02:00
parent 03918b036d
commit 088c5f0248
-2
View File
@@ -128,8 +128,6 @@ bool Lexer::consumeString()
static std::unordered_set<char> exit = { static std::unordered_set<char> exit = {
'"', '"',
'\r',
'\n',
'\0', '\0',
}; };