| 458 | return astOperand1() != nullptr && astOperand2() != nullptr; |
| 459 | } |
| 460 | bool isUnaryOp(const std::string &s) const { |
| 461 | return s == mStr && astOperand1() != nullptr && astOperand2() == nullptr; |
| 462 | } |
| 463 | bool isUnaryPreOp() const; |
| 464 | |
| 465 | uint64_t flags() const { |
nothing calls this directly
no test coverage detected