Pop the innermost state (top of the stack) and remember the popped item.
(self)
| 3466 | pass |
| 3467 | |
| 3468 | def _Pop(self): |
| 3469 | """Pop the innermost state (top of the stack) and remember the popped item.""" |
| 3470 | self.popped_top = self.stack.pop() |
| 3471 | |
| 3472 | def _CountOpenParentheses(self, line: str): |
| 3473 | # Count parentheses. This is to avoid adding struct arguments to |