mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
js: Highlight Extends and Super tokens
This commit is contained in:
parent
4dcdad4cc4
commit
1da7fea602
Notes:
sideshowbarker
2024-07-19 05:18:24 +09:00
Author: https://github.com/jack-karamanian Commit: https://github.com/SerenityOS/serenity/commit/1da7fea602f Pull-request: https://github.com/SerenityOS/serenity/pull/2672
1 changed files with 2 additions and 0 deletions
|
@ -695,12 +695,14 @@ int main(int argc, char** argv)
|
|||
case JS::TokenType::Const:
|
||||
case JS::TokenType::Debugger:
|
||||
case JS::TokenType::Delete:
|
||||
case JS::TokenType::Extends:
|
||||
case JS::TokenType::Function:
|
||||
case JS::TokenType::In:
|
||||
case JS::TokenType::Instanceof:
|
||||
case JS::TokenType::Interface:
|
||||
case JS::TokenType::Let:
|
||||
case JS::TokenType::New:
|
||||
case JS::TokenType::Super:
|
||||
case JS::TokenType::TemplateLiteralExprStart:
|
||||
case JS::TokenType::TemplateLiteralExprEnd:
|
||||
case JS::TokenType::Throw:
|
||||
|
|
Loading…
Reference in a new issue