mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 14:58:10 -05:00
Restructure StreamProxies to use common basis for matching directives
This commit is contained in:
@ -13,7 +13,6 @@ class MockLexer final : public ILexer<TokenType>
|
||||
static_assert(std::is_base_of<IParserValue, TokenType>::value);
|
||||
|
||||
std::vector<TokenType> m_tokens;
|
||||
//std::vector<HeaderParserValue> m_tokens;
|
||||
TokenType m_eof;
|
||||
int m_pop_count;
|
||||
|
||||
@ -58,4 +57,9 @@ public:
|
||||
{
|
||||
return m_pop_count;
|
||||
}
|
||||
|
||||
_NODISCARD ParserLine GetLineForPos(const TokenPos& pos) const override
|
||||
{
|
||||
return ParserLine();
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user