(op: parser.CodeDef)
| 563 | |
| 564 | |
| 565 | def has_error_without_pop(op: parser.CodeDef) -> bool: |
| 566 | return ( |
| 567 | variable_used(op, "ERROR_NO_POP") |
| 568 | or variable_used(op, "exception_unwind") |
| 569 | ) |
| 570 | |
| 571 | |
| 572 | NON_ESCAPING_FUNCTIONS = ( |
no test coverage detected
searching dependent graphs…