(op: parser.CodeDef)
| 556 | |
| 557 | |
| 558 | def has_error_with_pop(op: parser.CodeDef) -> bool: |
| 559 | return ( |
| 560 | variable_used(op, "ERROR_IF") |
| 561 | or variable_used(op, "exception_unwind") |
| 562 | ) |
| 563 | |
| 564 | |
| 565 | def has_error_without_pop(op: parser.CodeDef) -> bool: |
no test coverage detected
searching dependent graphs…