File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -707,6 +707,7 @@ jobs:
707
707
wasmfs.test_freetype
708
708
minimal0.test_utf
709
709
omitexports0.test_asyncify_longjmp
710
+ omitexports0.test_emscripten_api
710
711
strict.test_no_declare_asm_module_exports
711
712
"
712
713
test-modularize-instance :
Original file line number Diff line number Diff line change @@ -565,6 +565,12 @@ function exportLibrarySymbols() {
565
565
const results = [ '// Begin JS library exports' ] ;
566
566
for ( const ident of librarySymbols ) {
567
567
if ( EXPORT_ALL || EXPORTED_FUNCTIONS . has ( ident ) ) {
568
+ // Special case for wasmTable which can be both a JS library symbol but
569
+ // also a wasm export. See isDirectWasmExport in jsifier.mjs.
570
+ // FIXME: Remove this hack
571
+ if ( ident == 'wasmTable' && WASM_EXPORTS . has ( '__indirect_function_table' ) ) {
572
+ continue ;
573
+ }
568
574
results . push ( exportSymbol ( ident ) ) ;
569
575
}
570
576
}
You can’t perform that action at this time.
0 commit comments