(self, src: Value, line: int = -1)
| 584 | error_kind = ERR_NEVER |
| 585 | |
| 586 | def __init__(self, src: Value, line: int = -1) -> None: |
| 587 | assert src.type.is_refcounted |
| 588 | super().__init__(line) |
| 589 | self.src = src |
| 590 | |
| 591 | def sources(self) -> list[Value]: |
| 592 | return [self.src] |