We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6242ac commit 9081cb2Copy full SHA for 9081cb2
vm/src/compile.rs
@@ -1389,7 +1389,7 @@ impl Compiler {
1389
// Low level helper functions:
1390
fn emit(&mut self, instruction: Instruction) {
1391
let location = self.current_source_location.clone();
1392
- let mut cur_code_obj = self.current_code_object();
+ let cur_code_obj = self.current_code_object();
1393
cur_code_obj.instructions.push(instruction);
1394
cur_code_obj.locations.push(location);
1395
// TODO: insert source filename
0 commit comments