Implement IntInst methods

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2024-09-24 16:57:22 -07:00
parent 890467e02c
commit c8d670ba59
3 changed files with 116 additions and 3 deletions

View File

@@ -265,7 +265,9 @@ impl Vm {
let method_type = self.builtins().get("Method").unwrap().clone();
loop {
match self.dispatch() {
let op = self.dispatch();
match op {
Op::Pop => {
self.pop();
}