Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jedel1043 committed Jan 10, 2025
1 parent 278271b commit 5375b50
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions core/engine/src/vm/call_frame/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,16 +154,15 @@ impl CallFrame {
environments: EnvironmentStack,
realm: Realm,
) -> Self {
let local_binings_initialized = code_block.local_bindings_initialized.clone();
Self {
code_block,
pc: 0,
rp: 0,
env_fp: 0,
argument_count: 0,
iterators: ThinVec::new(),
binding_stack: Vec::new(),
local_bindings_initialized: local_binings_initialized,
local_bindings_initialized: code_block.local_bindings_initialized.clone(),
code_block,
loop_iteration_count: 0,
active_runnable,
environments,
Expand Down

0 comments on commit 5375b50

Please sign in to comment.