Browse Source

Add missing class name binding (#3328)

pull/3337/head
raskad 12 months ago committed by GitHub
parent
commit
8fd474419b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      boa_engine/src/bytecompiler/class.rs

8
boa_engine/src/bytecompiler/class.rs

@ -595,6 +595,9 @@ impl ByteCompiler<'_, '_> {
self.emit_opcode(Opcode::Pop); self.emit_opcode(Opcode::Pop);
if let Some(class_env) = class_env { if let Some(class_env) = class_env {
self.emit_opcode(Opcode::Dup);
self.emit_binding(BindingOpcode::InitConst, class_name.into());
let env_index = self.pop_compile_environment(); let env_index = self.pop_compile_environment();
self.patch_jump_with_target(class_env, env_index); self.patch_jump_with_target(class_env, env_index);
self.emit_opcode(Opcode::PopEnvironment); self.emit_opcode(Opcode::PopEnvironment);
@ -603,10 +606,7 @@ impl ByteCompiler<'_, '_> {
self.emit_opcode(Opcode::PopPrivateEnvironment); self.emit_opcode(Opcode::PopPrivateEnvironment);
if !expression { if !expression {
self.emit_binding( self.emit_binding(BindingOpcode::InitVar, class_name.into());
BindingOpcode::InitVar,
class.name().expect("class statements must have a name"),
);
} }
} }
} }

Loading…
Cancel
Save