Add emitting of function calls

Signed-off-by: Marcel Müller <neikos@neikos.email>
This commit is contained in:
Marcel Müller 2026-03-14 10:52:29 +01:00
parent cb55c00739
commit 52a63a7066
5 changed files with 116 additions and 11 deletions

View file

@ -208,6 +208,7 @@ pub fn execute(vm: &VMInstructions, global_context: &Context) -> Result<String,
scopes.insert_into_slot(*result_slot, result.unwrap());
}
Instruction::FunctionCall { .. } => todo!(),
}
ip += 1;