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

LibJS: Implement exponentiation assignment operator (**=)

This commit is contained in:
Linus Groh 2020-05-04 23:03:35 +01:00 committed by Andreas Kling
parent 3e754a15d4
commit a2e1f1a872
8 changed files with 23 additions and 5 deletions

View file

@ -62,7 +62,7 @@ static TextStyle style_for_token_type(Gfx::Palette palette, JS::TokenType type)
case JS::TokenType::Ampersand:
case JS::TokenType::AmpersandEquals:
case JS::TokenType::Asterisk:
case JS::TokenType::AsteriskAsteriskEquals:
case JS::TokenType::DoubleAsteriskEquals:
case JS::TokenType::AsteriskEquals:
case JS::TokenType::Caret:
case JS::TokenType::CaretEquals: