LibCpp: Support parsing binary "==" Operator

This commit is contained in:
Itamar 2021-03-27 19:20:20 +03:00 committed by Andreas Kling
commit cbb49f26d9
Notes: sideshowbarker 2024-07-18 20:42:14 +09:00
3 changed files with 8 additions and 1 deletions

View file

@ -371,6 +371,7 @@ enum class BinaryOp {
BitwiseXor,
LeftShift,
RightShift,
EqualsEquals
};
class BinaryExpression : public Expression {