aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/vm.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vm.rs b/src/vm.rs
index 1e04673..2752435 100644
--- a/src/vm.rs
+++ b/src/vm.rs
@@ -720,8 +720,8 @@ impl VM {
Op::Index => {
// We don't have any information about the slot and the indexable might contain
// mixed types.
- self.stack.pop().unwrap(); // indexable
- self.stack.pop().unwrap(); // slot
+ self.stack.pop().unwrap();
+ self.stack.pop().unwrap();
self.stack.push(Value::Unknown);
}