(self, frame: TypeVarLikeScope)
| 7285 | |
| 7286 | @contextmanager |
| 7287 | def tvar_scope_frame(self, frame: TypeVarLikeScope) -> Iterator[None]: |
| 7288 | old_scope = self.tvar_scope |
| 7289 | self.tvar_scope = frame |
| 7290 | yield |
| 7291 | self.tvar_scope = old_scope |
| 7292 | |
| 7293 | def defer(self, debug_context: Context | None = None, force_progress: bool = False) -> None: |
| 7294 | """Defer current analysis target to be analyzed again. |
no outgoing calls
no test coverage detected