LoadExpression + more CodeGen

This commit is contained in:
Markus Hauschild
2013-06-01 15:48:28 +02:00
parent c4e0c2f298
commit 96731379b4
9 changed files with 102 additions and 0 deletions

View File

@@ -17,6 +17,7 @@
#include "StatementList.h"
#include "ValueList.h"
#include "VariableDefinition.h"
#include "LoadExpression.h"
class ASTVisitor {
@@ -40,6 +41,7 @@ public:
virtual void visit(StatementList* e) = 0;
virtual void visit(ValueList* e) = 0;
virtual void visit(VariableDefinition* e) = 0;
virtual void visit(LoadExpression* e) = 0;
};
#endif // ASTVISITOR_H