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

LibJS: Rename BinaryOp::{Plus,Minus,Asterisk,Slash}

This commit is contained in:
Linus Groh 2020-04-05 12:56:53 +01:00 committed by Andreas Kling
parent a4f6f8e0e7
commit eafd3dbaf8
3 changed files with 16 additions and 16 deletions

View file

@ -309,10 +309,10 @@ private:
};
enum class BinaryOp {
Plus,
Minus,
Asterisk,
Slash,
Addition,
Subtraction,
Multiplication,
Division,
Modulo,
TypedEquals,
TypedInequals,