File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -481,8 +481,7 @@ function ${name}(${args}) {
481481 print ( processMacros ( preprocess ( read ( shellFile ) , shellFile ) ) ) ;
482482
483483 const preFile = MINIMAL_RUNTIME ? 'preamble_minimal.js' : 'preamble.js' ;
484- const pre = processMacros ( preprocess ( read ( preFile ) , preFile ) ) ;
485- print ( pre ) ;
484+ print ( processMacros ( preprocess ( read ( preFile ) , preFile ) ) ) ;
486485
487486 const generated = itemsDict . functionStub . concat ( itemsDict . globalVariablePostSet ) ;
488487 generated . forEach ( ( item ) => print ( indentify ( item . JS || '' , 2 ) ) ) ;
@@ -525,8 +524,7 @@ function ${name}(${args}) {
525524 }
526525
527526 const postFile = MINIMAL_RUNTIME ? 'postamble_minimal.js' : 'postamble.js' ;
528- const post = processMacros ( preprocess ( read ( postFile ) , postFile ) ) ;
529- print ( post ) ;
527+ print ( processMacros ( preprocess ( read ( postFile ) , postFile ) ) ) ;
530528
531529 print ( '\n//FORWARDED_DATA:' + JSON . stringify ( {
532530 librarySymbols : librarySymbols ,
You can’t perform that action at this time.
0 commit comments