LibJS: Move Value ops into Value.cpp and tweak BinaryOp names

This commit is contained in:
Andreas Kling 2020-03-10 11:35:05 +01:00
commit 7de35118a9
Notes: sideshowbarker 2024-07-19 08:47:22 +09:00
4 changed files with 93 additions and 84 deletions

View file

@ -178,13 +178,13 @@ enum class BinaryOp {
Minus,
TypedEquals,
TypedInequals,
Greater,
Smaller,
BitAnd,
BitOr,
BitXor,
BitLeftShift,
BitRightShift,
GreaterThan,
LessThan,
BitwiseAnd,
BitwiseOr,
BitwiseXor,
LeftShift,
RightShift,
};
class BinaryExpression : public Expression {