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>
7 lines
No EOL
163 B
WebAssembly Text Format
7 lines
No EOL
163 B
WebAssembly Text Format
;; Test WASM module with invalid export name starting with 'wasm:'
|
|
(module
|
|
(func $test (result i32)
|
|
i32.const 42
|
|
)
|
|
(export "wasm:invalid" (func $test))
|
|
) |