upd: add some files

This commit is contained in:
2023-11-06 11:47:56 +08:00
parent 3e0ca43a03
commit 59aef02010
83 changed files with 32860 additions and 1 deletions

14
include/Evalvisitor.h Normal file
View File

@ -0,0 +1,14 @@
#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