File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
crates/js-component-bindgen/src Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -356,7 +356,10 @@ impl EsmBindgen {
356356 } else {
357357 uwrite ! ( output, "{external_name} as {iface_local_name}" ) ;
358358 }
359- bound_external_names. push ( ( external_name. to_string ( ) , iface_local_name. to_string ( ) ) ) ;
359+ bound_external_names. push ( (
360+ external_name. to_string ( ) ,
361+ iface_local_name. to_string ( ) ,
362+ ) ) ;
360363 }
361364
362365 ImportBinding :: Local ( local_names) => {
@@ -374,7 +377,8 @@ impl EsmBindgen {
374377 } else {
375378 uwrite ! ( output, "{external_name} as {local_name}" ) ;
376379 }
377- bound_external_names. push ( ( external_name. to_string ( ) , local_name. to_string ( ) ) ) ;
380+ bound_external_names
381+ . push ( ( external_name. to_string ( ) , local_name. to_string ( ) ) ) ;
378382 }
379383 }
380384 } ;
You can’t perform that action at this time.
0 commit comments