| 533 | } |
| 534 | |
| 535 | bool Unparser::IsComplexOperator(const Expr& expr) { |
| 536 | // If the arg is a call with more than one arg, return true |
| 537 | return expr.has_call_expr() && expr.call_expr().args_size() >= 2; |
| 538 | } |
| 539 | |
| 540 | // Returns true the given expression is |
| 541 | // - a call expression AND ONE of the following holds: |
nothing calls this directly
no test coverage detected