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
@@ -2,6 +2,8 @@
#include "ast/Node.h"
struct InlineNode : public Node {
virtual ~InlineNode() = default;
};
namespace ast {
struct InlineNode : public Node {
virtual ~InlineNode() = default;
};
}