Restore analyzer state.
(self)
| 2225 | self.missing_names.append(set()) |
| 2226 | |
| 2227 | def leave_class(self) -> None: |
| 2228 | """Restore analyzer state.""" |
| 2229 | self.block_depth.pop() |
| 2230 | self.loop_depth.pop() |
| 2231 | self.locals.pop() |
| 2232 | self.scope_stack.pop() |
| 2233 | self._type = self.type_stack.pop() |
| 2234 | self.missing_names.pop() |
| 2235 | |
| 2236 | def analyze_class_decorator(self, defn: ClassDef, decorator: Expression) -> None: |
| 2237 | decorator.accept(self) |
no test coverage detected