Pushes a new layer for assignment tracking.
(self)
| 778 | return target in self._param_def_block[-1] |
| 779 | |
| 780 | def push_assign_tracking(self) -> None: |
| 781 | """Pushes a new layer for assignment tracking.""" |
| 782 | self._assign_stack.append(set()) |
| 783 | |
| 784 | def pop_assign_tracking(self, frame: Frame) -> None: |
| 785 | """Pops the topmost level for assignment tracking and updates the |
no outgoing calls
no test coverage detected