type node added (for type deduction)

This commit is contained in:
ProgramSnail 2023-08-08 20:21:48 +03:00
parent a7c1e3f658
commit 8bce645431
6 changed files with 92 additions and 248 deletions

View file

@ -5,7 +5,6 @@
#include "error_handling.hpp"
#include "tokens.hpp"
#include "type_nodes.hpp"
#include "types.hpp"
namespace builders {

View file

@ -1,9 +0,0 @@
#include "types.hpp"
namespace types {
Type *TypeProxy::get() { return type_storage_->get_type(id_); }
const Type *TypeProxy::get() const { return type_storage_->get_type(id_); }
} // namespace types