(self)
| 26 | self.program = program |
| 27 | |
| 28 | def __hash__(self) -> int: |
| 29 | return hash(self.program) |
| 30 | |
| 31 | def __eq__(self, __value: object) -> bool: |
| 32 | if isinstance(__value, Variable): |
nothing calls this directly
no outgoing calls
no test coverage detected