| 289 | |
| 290 | @dataclass |
| 291 | class InstDef(Node): |
| 292 | annotations: list[str] |
| 293 | kind: Literal["inst", "op"] |
| 294 | name: str |
| 295 | inputs: list[InputEffect] |
| 296 | outputs: list[OutputEffect] |
| 297 | block: BlockStmt |
| 298 | |
| 299 | |
| 300 | @dataclass |
no outgoing calls
no test coverage detected
searching dependent graphs…