| 5621 | class ParseState { |
| 5622 | public: |
| 5623 | ParseState(ParseResultType type, TokenStream const &remainingTokens) |
| 5624 | : m_type(type), m_remainingTokens(remainingTokens) { |
| 5625 | } |
| 5626 | |
| 5627 | auto type() const -> ParseResultType { |
| 5628 | return m_type; |
nothing calls this directly
no outgoing calls
no test coverage detected