(self, binding: MatchCast)
| 172 | self.log.pop_scope() |
| 173 | |
| 174 | def visit_match_cast_(self, binding: MatchCast) -> None: |
| 175 | self.log.add("MatchCast") |
| 176 | self.log.push_scope() |
| 177 | self.visit_var_def(binding.var) |
| 178 | self.visit_expr(binding.value) |
| 179 | self.log.pop_scope() |
| 180 | |
| 181 | def visit_binding_block_(self, block: BindingBlock) -> None: |
| 182 | self.log.add("BindingBlock") |
nothing calls this directly
no test coverage detected