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

LibJS: Implement (no-op) debugger statement

This commit is contained in:
Linus Groh 2020-04-30 17:26:27 +01:00 committed by Andreas Kling
parent ea839861e5
commit 43c1fa9965
9 changed files with 41 additions and 1 deletions

View file

@ -532,6 +532,7 @@ int main(int argc, char** argv)
break;
case JS::TokenType::Class:
case JS::TokenType::Const:
case JS::TokenType::Debugger:
case JS::TokenType::Delete:
case JS::TokenType::Function:
case JS::TokenType::In: