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

LibCpp: Support parsing binary "==" Operator

This commit is contained in:
Itamar 2021-03-27 19:20:20 +03:00 committed by Andreas Kling
parent 1f9f6ea9d6
commit cbb49f26d9
3 changed files with 8 additions and 1 deletions

View file

@ -203,6 +203,9 @@ void BinaryExpression::dump(size_t indent) const
case BinaryOp::RightShift:
op_string = ">>";
break;
case BinaryOp::EqualsEquals:
op_string = "==";
break;
}
m_lhs->dump(indent + 1);