(self, n: Name)
| 2022 | return None |
| 2023 | |
| 2024 | def visit_Name(self, n: Name) -> Type: |
| 2025 | return UnboundType(n.id, line=self.line, column=self.convert_column(n.col_offset)) |
| 2026 | |
| 2027 | def visit_BinOp(self, n: ast3.BinOp) -> Type: |
| 2028 | if not isinstance(n.op, ast3.BitOr): |
nothing calls this directly
no test coverage detected