LibJS: Implement null and undefined literals

This commit is contained in:
0xtechnobabble 2020-03-15 23:32:34 +02:00 committed by Andreas Kling
commit cfd710eb31
Notes: sideshowbarker 2024-07-19 08:16:59 +09:00
6 changed files with 61 additions and 0 deletions

View file

@ -183,6 +183,8 @@ const char* Token::name(TokenType type)
return "Try";
case TokenType::Typeof:
return "Typeof";
case TokenType::UndefinedLiteral:
return "UndefinedLiteral";
case TokenType::UnsignedShiftRight:
return "UnsignedShiftRight";
case TokenType::UnsignedShiftRightEquals: