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

LibCpp: Support parsing '!=" operator

This commit is contained in:
Itamar 2021-03-31 18:19:17 +03:00 committed by Andreas Kling
parent 68e9a05472
commit fe4122bbae
3 changed files with 9 additions and 2 deletions

View file

@ -418,7 +418,8 @@ enum class BinaryOp {
BitwiseXor,
LeftShift,
RightShift,
EqualsEquals
EqualsEquals,
NotEqual,
};
class BinaryExpression : public Expression {