diff options
author | Linus Groh <mail@linusgroh.de> | 2020-04-05 13:40:00 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-04-05 15:32:06 +0200 |
commit | 0403845d3edce9caf6823e0579074f57e9a4b9b9 (patch) | |
tree | f545e5cc2f4be20bd90d696174090e333077512c /Libraries/LibJS/AST.h | |
parent | eafd3dbaf88461ba7fb99ce8c5c6e7a295bed9b4 (diff) | |
download | serenity-0403845d3edce9caf6823e0579074f57e9a4b9b9.zip |
LibJS: Implement exponentiation (** operator)
Diffstat (limited to 'Libraries/LibJS/AST.h')
-rw-r--r-- | Libraries/LibJS/AST.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Libraries/LibJS/AST.h b/Libraries/LibJS/AST.h index af6b13bced..3c0d761127 100644 --- a/Libraries/LibJS/AST.h +++ b/Libraries/LibJS/AST.h @@ -314,6 +314,7 @@ enum class BinaryOp { Multiplication, Division, Modulo, + Exponentiation, TypedEquals, TypedInequals, AbstractEquals, |