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:
parent
68e9a05472
commit
fe4122bbae
3 changed files with 9 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue