mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:27:44 +00:00
LibCpp: Parse "arrow" operator
This commit is contained in:
parent
44833f1621
commit
ec2c54ee2e
3 changed files with 8 additions and 1 deletions
|
@ -215,6 +215,9 @@ void BinaryExpression::dump(size_t indent) const
|
|||
case BinaryOp::LogicalAnd:
|
||||
op_string = "&&";
|
||||
break;
|
||||
case BinaryOp::Arrow:
|
||||
op_string = "->";
|
||||
break;
|
||||
}
|
||||
|
||||
m_lhs->dump(indent + 1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue