(self, o: NameExpr)
| 239 | self.record_precise_if_checked_scope(o) |
| 240 | |
| 241 | def visit_name_expr(self, o: NameExpr) -> None: |
| 242 | if o.fullname in ("builtins.None", "builtins.True", "builtins.False", "builtins.Ellipsis"): |
| 243 | self.record_precise_if_checked_scope(o) |
| 244 | else: |
| 245 | self.process_node(o) |
| 246 | super().visit_name_expr(o) |
| 247 | |
| 248 | def visit_yield_from_expr(self, o: YieldFromExpr) -> None: |
| 249 | if o.expr: |
nothing calls this directly
no test coverage detected