(self, dest: Register, src: list[Value], line: int = -1)
| 362 | error_kind = ERR_NEVER |
| 363 | |
| 364 | def __init__(self, dest: Register, src: list[Value], line: int = -1) -> None: |
| 365 | super().__init__(dest, line) |
| 366 | assert src |
| 367 | assert isinstance(dest.type, RArray) |
| 368 | assert dest.type.length == len(src) |
| 369 | self.src = src |
| 370 | |
| 371 | def sources(self) -> list[Value]: |
| 372 | return self.src.copy() |
nothing calls this directly
no test coverage detected