This commit is contained in:
bronku 2025-11-18 15:36:34 +01:00
commit 080d115e17
6 changed files with 202 additions and 0 deletions

23
src/ParserCtx.hpp Normal file
View file

@ -0,0 +1,23 @@
#pragma once
namespace yy
{
class Parser;
class location;
}
namespace Elite
{
class ParserCtx
{
public:
ParserCtx();
~ParserCtx();
void *lexer;
yy::location *loc;
yy::Parser *parser;
};
} // namespace Elite