diff options
author | Linus Groh <mail@linusgroh.de> | 2020-04-05 12:56:53 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-04-05 15:31:12 +0200 |
commit | eafd3dbaf88461ba7fb99ce8c5c6e7a295bed9b4 (patch) | |
tree | e469717edac85eefd7367369b42f15018a128298 /Libraries/LibJS/AST.h | |
parent | a4f6f8e0e7019fcf8e3f894cca0cda0ede04ba42 (diff) | |
download | serenity-eafd3dbaf88461ba7fb99ce8c5c6e7a295bed9b4.zip |
LibJS: Rename BinaryOp::{Plus,Minus,Asterisk,Slash}
Diffstat (limited to 'Libraries/LibJS/AST.h')
-rw-r--r-- | Libraries/LibJS/AST.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Libraries/LibJS/AST.h b/Libraries/LibJS/AST.h index 96ded13ea0..af6b13bced 100644 --- a/Libraries/LibJS/AST.h +++ b/Libraries/LibJS/AST.h @@ -309,10 +309,10 @@ private: }; enum class BinaryOp { - Plus, - Minus, - Asterisk, - Slash, + Addition, + Subtraction, + Multiplication, + Division, Modulo, TypedEquals, TypedInequals, |