(self, left, right)
| 168 | print("Example 9") |
| 169 | class Add: |
| 170 | def __init__(self, left, right): |
| 171 | self.left = left |
| 172 | self.right = right |
| 173 | |
| 174 | @my_evaluate.register(Add) |
| 175 | def _(node): |
nothing calls this directly
no outgoing calls
no test coverage detected