working on the debugger mode

This commit is contained in:
cozis
2021-11-02 08:02:58 +00:00
parent 6be81ffa36
commit 7e04b0fc6d
7 changed files with 302 additions and 154 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ static Object *call(Object *self, Object **argv, unsigned int argc, Heap *heap,
assert(func->exe != NULL);
assert(func->index >= 0);
return run(func->runtime, error, func->exe, func->index, argv, argc, NULL, NULL);
return run(func->runtime, error, func->exe, func->index, argv, argc);
}
Object *Object_FromNojaFunction(Runtime *runtime, Executable *exe, int index, Heap *heap, Error *error)