refactored ast, started lexer

This commit is contained in:
2026-05-18 20:19:17 +03:00
parent 24750ddcbe
commit eb85acf224
29 changed files with 315 additions and 181 deletions
+5 -3
View File
@@ -5,6 +5,8 @@
#include <vector>
#include <string>
struct BlockNode : public Node {
virtual ~BlockNode() = default;
};
namespace ast {
struct BlockNode : public Node {
virtual ~BlockNode() = default;
};
}