Compare commits
No commits in common. "bccd5fc3a75ceb8ab00ff6c64bed841afb365d77" and "d0f9014f03f2cc92f3040c8a57caa73225f7a402" have entirely different histories.
bccd5fc3a7
...
d0f9014f03
|
@ -341,7 +341,7 @@ impl <'a> State <'a> {
|
||||||
},
|
},
|
||||||
Instruction::GetField (a, b, c) => {
|
Instruction::GetField (a, b, c) => {
|
||||||
let t = match self.reg (*b) {
|
let t = match self.reg (*b) {
|
||||||
Value::Nil => panic! ("R[B] must not be nil {}:{}", frame.block_idx, frame.program_counter),
|
Value::Nil => panic! ("R[B] must not be nil"),
|
||||||
Value::Table (t) => t,
|
Value::Table (t) => t,
|
||||||
_ => panic! ("R[B] must be a table"),
|
_ => panic! ("R[B] must be a table"),
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue