Get the current `State` of the parser.
(self)
| 2312 | return T.cast(Hlist, result[0]) # Known return type from main. |
| 2313 | |
| 2314 | def get_state(self) -> ParserState: |
| 2315 | """Get the current `State` of the parser.""" |
| 2316 | return self._state_stack[-1] |
| 2317 | |
| 2318 | def pop_state(self) -> None: |
| 2319 | """Pop a `State` off of the stack.""" |
no outgoing calls
no test coverage detected