(self, line: int)
| 283 | """ |
| 284 | |
| 285 | def __init__(self, line: int) -> None: |
| 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 |
no outgoing calls
no test coverage detected