2025-01-25 Latest Changes

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2025-01-25 16:27:50 +01:00
parent f0ffbafee1
commit e191173e7b
18 changed files with 182 additions and 759 deletions
+8
View File
@@ -4,3 +4,11 @@
#include "ast.hpp"
#include <cstdlib>
blitz::ast::variable::~variable() {}
blitz::ast::variable::variable(blitz::token token) : _token(token), _value(nullptr) {}
void blitz::ast::variable::set_value(std::shared_ptr<blitz::ast::expression> value)
{
_value = value;
}