(
where: lexer.Token,
name: str,
parts: list[Part],
instructions: dict[str, Instruction],
)
| 1092 | |
| 1093 | |
| 1094 | def add_instruction( |
| 1095 | where: lexer.Token, |
| 1096 | name: str, |
| 1097 | parts: list[Part], |
| 1098 | instructions: dict[str, Instruction], |
| 1099 | ) -> None: |
| 1100 | instructions[name] = Instruction(where, name, parts, None) |
| 1101 | |
| 1102 | |
| 1103 | def desugar_inst( |
no test coverage detected
searching dependent graphs…