(self, op)
| 500 | return None |
| 501 | |
| 502 | def isUnaryOp(self, op): |
| 503 | return self.astOperand1 and (self.astOperand2 is None) and self.str == op |
| 504 | |
| 505 | def isBinaryOp(self): |
| 506 | return self.astOperand1 and self.astOperand2 |
no outgoing calls
no test coverage detected