Skip to content

Commit

Permalink
InitLexical fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AnnikaCodes committed Jan 7, 2021
1 parent ae2daa0 commit d8d2c27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boa/src/vm/instructions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ impl std::fmt::Display for Instruction {
Self::DefVar(name) => write!(f, "DefVar({})", name),
Self::DefLet(name) => write!(f, "DefLet({})", name),
Self::DefConst(name) => write!(f, "DefConst({})", name),
Self::InitLexical(usize) => write!(f, "InitLexical({})", usize),
Self::InitLexical(value) => write!(f, "InitLexical({})", value),
}
}
}

0 comments on commit d8d2c27

Please sign in to comment.