Sign in
webkit
/
WebKit
/
04f027a29717944fe119ba52f37628c508e2d03c
/
.
/
JSTests
/
wasm
/
modules
/
js-wasm-function.js
blob: 0be5b81f3a00851f7f28b414d6262a7c085f7bfb [
file
] [
log
] [
blame
]
import
{
sum
}
from
"./sum.wasm"
import
*
as assert from
'../assert.js'
;
assert
.
isFunction
(
sum
);
assert
.
eq
(
sum
(
32
,
42
),
74
);
assert
.
eq
(
sum
(-
2
,
42
),
40
);
assert
.
throws
(()
=>
{
sum
=
32
;
},
TypeError
,
`
Attempted
to assign to readonly property
.`);