| 11 | using namespace antlr4; |
| 12 | |
| 13 | LuaParser::LuaParser(TokenStream *input) : Parser(input) { |
| 14 | _interpreter = new atn::ParserATNSimulator(this, _atn, _decisionToDFA, _sharedContextCache); |
| 15 | } |
| 16 | |
| 17 | LuaParser::~LuaParser() { |
| 18 | delete _interpreter; |
nothing calls this directly
no outgoing calls
no test coverage detected