(self, op: Let)
| 117 | self.log.pop_scope() |
| 118 | |
| 119 | def visit_let_(self, op: Let) -> None: |
| 120 | self.log.add("Let") |
| 121 | self.log.push_scope() |
| 122 | self.visit_expr(op.var) |
| 123 | self.visit_expr(op.value) |
| 124 | self.visit_expr(op.body) |
| 125 | self.log.pop_scope() |
| 126 | |
| 127 | def visit_call_(self, op: Call) -> None: |
| 128 | self.log.add("Call") |
no test coverage detected