(body: Block)
| 757 | |
| 758 | # Work around scoping woes |
| 759 | def make_handler(body: Block) -> GenFunc: |
| 760 | return lambda: builder.accept(body) |
| 761 | |
| 762 | def make_entry(type: Expression) -> tuple[ValueGenFunc, int]: |
| 763 | return (lambda: builder.accept(type), type.line) |
no test coverage detected
searching dependent graphs…