mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-08 09:09:43 +00:00
LibCpp: Support parsing binary "==" Operator
This commit is contained in:
parent
1f9f6ea9d6
commit
cbb49f26d9
Notes:
sideshowbarker
2024-07-18 20:42:14 +09:00
Author: https://github.com/itamar8910
Commit: cbb49f26d9
Pull-request: https://github.com/SerenityOS/serenity/pull/6009
3 changed files with 8 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue