LibJS: Parse object expressions

This commit is contained in:
0xtechnobabble 2020-03-21 02:29:00 +02:00 committed by Andreas Kling
commit bc002f807a
Notes: sideshowbarker 2024-07-19 08:12:30 +09:00
7 changed files with 48 additions and 4 deletions

View file

@ -57,6 +57,8 @@ const char* Token::name(TokenType type)
return "Catch";
case TokenType::Class:
return "Class";
case TokenType::Colon:
return "Colon";
case TokenType::Comma:
return "Comma";
case TokenType::Const: