(self, op: SeqExpr)
| 157 | self.log.add("ExternFunc") |
| 158 | |
| 159 | def visit_seq_expr_(self, op: SeqExpr) -> None: |
| 160 | self.log.add("SeqExpr") |
| 161 | self.log.push_scope() |
| 162 | for block in op.blocks: |
| 163 | self.visit_binding_block(block) |
| 164 | self.visit_expr(op.body) |
| 165 | self.log.pop_scope() |
| 166 | |
| 167 | def visit_var_binding_(self, binding: VarBinding) -> None: |
| 168 | self.log.add("VarBinding") |
nothing calls this directly
no test coverage detected