refactor(furvm): refactor thing

A pretty sloppy thing class refactor.

Refs: #12
This commit is contained in:
2026-06-16 14:59:29 +02:00
parent 0dfa8c1c02
commit c9f714642c
4 changed files with 21 additions and 70 deletions
-3
View File
@@ -27,9 +27,6 @@ int main(void) {
auto mainModule = context->emplace_module("main", s_bytecode.begin(), s_bytecode.end());
mainModule->emplace_function("main", 0);
std::ofstream file("./test.furm", std::ios::binary);
furvm::serializer::serialize_module(file, mainModule);
auto executor = context->emplace_executor(context);
executor->push_frame(mainModule, 0);