(fn: FuncIR, error: FnError)
| 32 | |
| 33 | |
| 34 | def assert_has_error(fn: FuncIR, error: FnError) -> None: |
| 35 | errors = check_func_ir(fn) |
| 36 | assert errors == [error] |
| 37 | |
| 38 | |
| 39 | def assert_no_errors(fn: FuncIR) -> None: |
no test coverage detected
searching dependent graphs…