Separate objects context and interface

This commit is contained in:
IlyaShurupov 2024-03-25 10:37:31 +03:00
parent e937d189df
commit 55daf0f303
32 changed files with 362 additions and 384 deletions

View file

@ -21,7 +21,7 @@ namespace tp::obj {
~ByteCode() {
for (auto const_obj : mConstants) {
NDO->destroy(const_obj.data());
objects_api::destroy(const_obj.data());
}
}
};