Pushes a new layer for assignment tracking.
(self)
| 659 | return target in self._param_def_block[-1] |
| 660 | |
| 661 | def push_assign_tracking(self): |
| 662 | """Pushes a new layer for assignment tracking.""" |
| 663 | self._assign_stack.append(set()) |
| 664 | |
| 665 | def pop_assign_tracking(self, frame): |
| 666 | """Pops the topmost level for assignment tracking and updates the |
no test coverage detected