1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:37:43 +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

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