(self, __value: object)
| 29 | return hash(self.program) |
| 30 | |
| 31 | def __eq__(self, __value: object) -> bool: |
| 32 | if isinstance(__value, Variable): |
| 33 | return self.program == __value.program |
| 34 | else: |
| 35 | return False |
| 36 | |
| 37 | def __repr__(self) -> str: |
| 38 | return self.program |
nothing calls this directly
no outgoing calls
no test coverage detected