| 9036 | public: |
| 9037 | |
| 9038 | ParseState( ParseResultType type, TokenStream const &remainingTokens ) |
| 9039 | : m_type(type), |
| 9040 | m_remainingTokens( remainingTokens ) |
| 9041 | {} |
| 9042 | |
| 9043 | auto type() const -> ParseResultType { return m_type; } |
| 9044 | auto remainingTokens() const -> TokenStream { return m_remainingTokens; } |
nothing calls this directly
no outgoing calls
no test coverage detected