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

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
parent fe6bd9650f
commit 7de35118a9
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 {