interpreter_tree first iteration

This commit is contained in:
ProgramSnail 2023-03-26 15:20:53 +03:00
parent 7f4cd5ee9a
commit 1ba132bb06
15 changed files with 1829 additions and 1 deletions

12
src/node.cpp Normal file
View file

@ -0,0 +1,12 @@
// for clangd
#include "../include/node.hpp"
#include "../include/visitor.hpp"
namespace interpreter {
void Node::Accept(Visitor* visitor) {
visitor->Visit(this);
}
} // namespace interpreter