1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:27:44 +00:00

LibJS: Lex single quote strings, escaped chars and unterminated strings

This commit is contained in:
Stephan Unverwerth 2020-03-14 11:45:25 +01:00 committed by Andreas Kling
parent d439013903
commit c0e6234219
5 changed files with 33 additions and 4 deletions

View file

@ -109,6 +109,7 @@ enum class TokenType {
Typeof,
UnsignedShiftRight,
UnsignedShiftRightEquals,
UnterminatedStringLiteral,
Var,
Void,
While,