| 5823 | public: |
| 5824 | |
| 5825 | ParseState( ParseResultType type, TokenStream const &remainingTokens ) |
| 5826 | : m_type(type), |
| 5827 | m_remainingTokens( remainingTokens ) |
| 5828 | {} |
| 5829 | |
| 5830 | auto type() const -> ParseResultType { return m_type; } |
| 5831 | auto remainingTokens() const -> TokenStream { return m_remainingTokens; } |
nothing calls this directly
no outgoing calls
no test coverage detected