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

@ -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);