(self)
| 286 | self.line = line |
| 287 | |
| 288 | def can_raise(self) -> bool: |
| 289 | # Override this is if Op may raise an exception. Note that currently the fact that |
| 290 | # only RegisterOps may raise an exception in hard coded in some places. |
| 291 | return False |
| 292 | |
| 293 | @abstractmethod |
| 294 | def sources(self) -> list[Value]: |
no outgoing calls
no test coverage detected