(self, left, right)
| 83 | |
| 84 | class MultiplyNodeAlt(NodeAlt): |
| 85 | def __init__(self, left, right): |
| 86 | self.left = left |
| 87 | self.right = right |
| 88 | |
| 89 | def evaluate(self): |
| 90 | left = self.left.evaluate() |
nothing calls this directly
no outgoing calls
no test coverage detected