(self, n: ast3.MatchSingleton)
| 1772 | return self.set_line(node, n) |
| 1773 | |
| 1774 | def visit_MatchSingleton(self, n: ast3.MatchSingleton) -> SingletonPattern: |
| 1775 | node = SingletonPattern(n.value) |
| 1776 | return self.set_line(node, n) |
| 1777 | |
| 1778 | def visit_MatchSequence(self, n: ast3.MatchSequence) -> SequencePattern: |
| 1779 | patterns = [self.visit(p) for p in n.patterns] |
nothing calls this directly
no test coverage detected