diff options
author | Linus Groh <mail@linusgroh.de> | 2020-05-04 23:03:35 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-05 11:12:27 +0200 |
commit | a2e1f1a872605cf0235f9259e539fa67eb9a65e3 (patch) | |
tree | 9a30be5cae2fb8a29024d3d479c4ef78a1a3bf8d /Userland | |
parent | 3e754a15d48e094bfaa6ce4faf4eb1bb1a07399a (diff) | |
download | serenity-a2e1f1a872605cf0235f9259e539fa67eb9a65e3.zip |
LibJS: Implement exponentiation assignment operator (**=)
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/js.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/js.cpp b/Userland/js.cpp index 36b71bcf91..0389a5318f 100644 --- a/Userland/js.cpp +++ b/Userland/js.cpp @@ -567,7 +567,7 @@ int main(int argc, char** argv) 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: |