We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ee583f commit 2b0798cCopy full SHA for 2b0798c
crates/wasm/src/vm_class.rs
@@ -277,9 +277,12 @@ impl WASMVirtualMachine {
277
278
vm.run_code_obj(
279
code,
280
- Scope::new(Some(ArgMapping::from_dict_exact(attrs.clone())), attrs.clone()),
+ Scope::new(
281
+ Some(ArgMapping::from_dict_exact(attrs.clone())),
282
+ attrs.clone(),
283
+ ),
284
)
- .into_js(vm)?;
285
+ .into_js(vm)?;
286
287
let module = vm.new_module(&name, attrs, None);
288
0 commit comments