(self, p: StarredPattern)
| 6482 | pattern.accept(self) |
| 6483 | |
| 6484 | def visit_starred_pattern(self, p: StarredPattern) -> None: |
| 6485 | if p.capture is not None: |
| 6486 | self.analyze_lvalue(p.capture) |
| 6487 | |
| 6488 | def visit_mapping_pattern(self, p: MappingPattern) -> None: |
| 6489 | for key in p.keys: |
nothing calls this directly
no test coverage detected