We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cbf506 commit 153a03aCopy full SHA for 153a03a
1 file changed
crates/jit/tests/common.rs
@@ -99,7 +99,7 @@ impl StackMachine {
99
Instruction::LoadNameAny(idx) => self
100
.stack
101
.push(StackValue::String(names[idx.get(arg) as usize].clone())),
102
- Instruction::StoreLocal(idx) => {
+ Instruction::StoreName(idx) => {
103
let idx = idx.get(arg);
104
self.locals
105
.insert(names[idx as usize].clone(), self.stack.pop().unwrap());
0 commit comments