(self, p: AsPattern)
| 6465 | # |
| 6466 | |
| 6467 | def visit_as_pattern(self, p: AsPattern) -> None: |
| 6468 | if p.pattern is not None: |
| 6469 | p.pattern.accept(self) |
| 6470 | if p.name is not None: |
| 6471 | self.analyze_lvalue(p.name) |
| 6472 | |
| 6473 | def visit_or_pattern(self, p: OrPattern) -> None: |
| 6474 | for pattern in p.patterns: |
nothing calls this directly
no test coverage detected