python2ruby/src/ParserCtx.hpp
2025-11-20 14:22:16 +01:00

18 lines
199 B
C++

#pragma once
namespace yy
{
class Parser;
class location;
}
class ParserCtx
{
public:
ParserCtx();
~ParserCtx();
void *lexer;
yy::location *loc;
yy::Parser *parser;
};