(self, offset: int, storage: Storage)
| 227 | raise NotImplementedError("GOTO_TIER_ONE not supported in tier 1") |
| 228 | |
| 229 | def goto_error(self, offset: int, storage: Storage) -> str: |
| 230 | if offset > 0: |
| 231 | return f"{self.jump_prefix}JUMP_TO_LABEL(pop_{offset}_error);" |
| 232 | if offset < 0: |
| 233 | storage.copy().flush(self.out) |
| 234 | return f"{self.jump_prefix}JUMP_TO_LABEL(error);" |
| 235 | |
| 236 | def error_if( |
| 237 | self, |
no test coverage detected