| 455 | return mTokType == eIncDecOp; |
| 456 | } |
| 457 | bool isBinaryOp() const { |
| 458 | return astOperand1() != nullptr && astOperand2() != nullptr; |
| 459 | } |
| 460 | bool isUnaryOp(const std::string &s) const { |
| 461 | return s == mStr && astOperand1() != nullptr && astOperand2() == nullptr; |
| 462 | } |
nothing calls this directly
no test coverage detected