diff options
| author | Gustav Sörnäs <gustav@sornas.net> | 2021-03-08 00:46:54 +0100 |
|---|---|---|
| committer | Gustav Sörnäs <gustav@sornas.net> | 2021-03-08 00:46:54 +0100 |
| commit | f145fbd1d8ad6148c8c5631487d5208c043a0a25 (patch) | |
| tree | 9e46da4302ee378e09704b76dc53c2b3cf6eb453 /src/vm.rs | |
| parent | 5052d46071aaba4d24307aa62ad0cde766aaab3f (diff) | |
| download | sylt-f145fbd1d8ad6148c8c5631487d5208c043a0a25.tar.gz | |
remove comment
Diffstat (limited to 'src/vm.rs')
| -rw-r--r-- | src/vm.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); } |
