Files
BH-Python-Interpreter-2023/include/Evalvisitor.h
2023-11-06 11:47:56 +08:00

15 lines
296 B
C++

#pragma once
#ifndef PYTHON_INTERPRETER_EVALVISITOR_H
#define PYTHON_INTERPRETER_EVALVISITOR_H
#include "Python3ParserBaseVisitor.h"
class EvalVisitor : public Python3ParserBaseVisitor {
// TODO: override all methods of Python3ParserBaseVisitor
};
#endif//PYTHON_INTERPRETER_EVALVISITOR_H