mirror of
https://codeberg.org/ProgramSnail/lang.git
synced 2025-12-28 17:58:45 +00:00
fixes, part of == for TypeProxy done, cotex enchantments, type chack arguments
This commit is contained in:
parent
6dc9c9b5af
commit
f36ff3638b
8 changed files with 195 additions and 121 deletions
|
|
@ -6,4 +6,8 @@ Type *TypeProxy::get() { return type_storage_->get_type(id_); }
|
|||
|
||||
const Type *TypeProxy::get() const { return type_storage_->get_type(id_); }
|
||||
|
||||
bool TypeProxy::operator==(const TypeProxy& other) const {
|
||||
return *get() == *other.get();
|
||||
}
|
||||
|
||||
}; // namespace nodes
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue