(self, left, right)
| 180 | |
| 181 | class MultiplyNodeAlt(NodeAlt): |
| 182 | def __init__(self, left, right): |
| 183 | self.left = left |
| 184 | self.right = right |
| 185 | |
| 186 | def evaluate(self): |
| 187 | left = self.left.evaluate() |
nothing calls this directly
no outgoing calls
no test coverage detected