ready to build AST

This commit is contained in:
2024-08-08 13:05:56 +00:00
parent f1eb6abcc1
commit 9900d5aaf3
23 changed files with 683 additions and 110 deletions

View File

@ -0,0 +1,6 @@
#ifndef ASTNODE_VISITOR_H
#define ASTNODE_VISITOR_H
#include "astnode.h"
#include "expr_astnode.h"
class ASTNodeVisitor : public ASTNodeVisitorBase {};
#endif