mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Throw error if VM reaches EOF and call stack is not empty
This commit is contained in:
parent
ab775f47de
commit
c7f4e3eb8e
@ -464,6 +464,10 @@ export class VirtualMachine {
|
||||
thread.set_current_instruction_pointer(next);
|
||||
} else {
|
||||
// Reached EOF.
|
||||
// Game will crash if call stack is not empty.
|
||||
if (thread.call_stack.length > 0) {
|
||||
throw new Error("Reached EOF but call stack was not empty");
|
||||
}
|
||||
thread.pop_call_stack();
|
||||
this.terminate_thread(this.thread_idx);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user