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:
parent
fe6bd9650f
commit
7de35118a9
4 changed files with 93 additions and 84 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue