(self, left, right)
| 179 | |
| 180 | class Multiply: |
| 181 | def __init__(self, left, right): |
| 182 | self.left = left |
| 183 | self.right = right |
| 184 | |
| 185 | @my_evaluate.register(Multiply) |
| 186 | def _(node): |
nothing calls this directly
no outgoing calls
no test coverage detected