Pop the innermost state (top of the stack) and remember the popped item.
(self)
| 3398 | pass |
| 3399 | |
| 3400 | def _Pop(self): |
| 3401 | """Pop the innermost state (top of the stack) and remember the popped item.""" |
| 3402 | self.popped_top = self.stack.pop() |
| 3403 | |
| 3404 | def _CountOpenParentheses(self, line: str): |
| 3405 | # Count parentheses. This is to avoid adding struct arguments to |