PR-URL: https://github.com/nodejs/node/pull/59020 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
8 lines
No EOL
243 B
WebAssembly Text Format
8 lines
No EOL
243 B
WebAssembly Text Format
;; Test WASM module with invalid import module name starting with 'wasm-js:'
|
|
(module
|
|
(import "wasm-js:invalid" "test" (func $invalidImport (result i32)))
|
|
(export "test" (func $test))
|
|
(func $test (result i32)
|
|
call $invalidImport
|
|
)
|
|
) |