(self, p: MappingPattern)
| 6486 | self.analyze_lvalue(p.capture) |
| 6487 | |
| 6488 | def visit_mapping_pattern(self, p: MappingPattern) -> None: |
| 6489 | for key in p.keys: |
| 6490 | key.accept(self) |
| 6491 | for value in p.values: |
| 6492 | value.accept(self) |
| 6493 | if p.rest is not None: |
| 6494 | self.analyze_lvalue(p.rest) |
| 6495 | |
| 6496 | def visit_class_pattern(self, p: ClassPattern) -> None: |
| 6497 | p.class_ref.accept(self) |
nothing calls this directly
no test coverage detected