Skip to content

Commit aa127f8

Browse files
authored
Remove remaining uses of __import decorator (#17975)
It looks they are not necessary anymore since #17411. `__asyncify_state__import` and `__asyncify_data__import` were added after that when #15893 landed, and `__c_longjmp_import` was a typo in the first place (there is only one `_` instead of two `_`s before `import`) so it was likely not detected when other uses were removed.
1 parent 71ce2ea commit aa127f8

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/library.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3623,13 +3623,10 @@ mergeInto(LibraryManager.library, {
36233623
#endif
36243624
#if SUPPORT_LONGJMP == 'wasm'
36253625
__c_longjmp: "new WebAssembly.Tag({'parameters': ['{{{ POINTER_WASM_TYPE }}}']})",
3626-
__c_longjmp_import: true,
36273626
#endif
36283627
#if ASYNCIFY
36293628
__asyncify_state: "new WebAssembly.Global({'value': 'i32', 'mutable': true}, 0)",
3630-
__asyncify_state__import: true,
36313629
__asyncify_data: "new WebAssembly.Global({'value': 'i32', 'mutable': true}, 0)",
3632-
__asyncify_data__import: true,
36333630
#endif
36343631
#endif
36353632

0 commit comments

Comments
 (0)