File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -737,7 +737,7 @@ function(${args}) {
737
737
}
738
738
739
739
if ( MODULARIZE == 'instance' && ( EXPORT_ALL || EXPORTED_FUNCTIONS . has ( mangled ) ) && ! isStub ) {
740
- // It MODULARIZE=instance mode mark JS library symbols are exported at
740
+ // In MODULARIZE=instance mode mark JS library symbols are exported at
741
741
// the point of declaration.
742
742
contentText = 'export ' + contentText ;
743
743
}
Original file line number Diff line number Diff line change @@ -559,7 +559,7 @@ function exportRuntimeSymbols() {
559
559
}
560
560
561
561
function exportLibrarySymbols ( ) {
562
- assert ( ! MODULARIZE != 'instance' ) ;
562
+ assert ( MODULARIZE != 'instance' ) ;
563
563
const results = [ '// Begin JS library exports' ] ;
564
564
for ( const ident of librarySymbols ) {
565
565
if ( EXPORT_ALL || EXPORTED_FUNCTIONS . has ( ident ) ) {
Original file line number Diff line number Diff line change 13
13
14
14
function initMemory ( ) {
15
15
#if PTHREADS
16
- if ( ENVIRONMENT_IS_PTHREAD ) return
16
+ if ( ENVIRONMENT_IS_PTHREAD ) return ;
17
17
#endif // PTHREADS
18
18
19
19
#if expectToReceiveOnModule ( 'wasmMemory' )
You can’t perform that action at this time.
0 commit comments