Util: Check strings for double quotes in Lexer

This commit is contained in:
Riyyi
2022-06-28 16:03:43 +02:00
parent 8fb1a1a8e9
commit 061ed74d4f
2 changed files with 19 additions and 3 deletions
+4
View File
@@ -33,6 +33,10 @@ Value Job::fire()
Lexer lexer(this);
lexer.analyze();
if (!m_success) {
return { nullptr };
}
Parser parser(this);
Value value = parser.parse();