Sign in
webkit
/
WebKit
/
04f027a29717944fe119ba52f37628c508e2d03c
/
.
/
JSTests
/
wasm
/
modules
/
js-wasm-global.js
blob: 5ae7929ac7b1212e3f58a8082034cb8c801325e9 [
file
] [
log
] [
blame
]
import
{
constant
}
from
"./constant.wasm"
import
*
as assert from
'../assert.js'
;
assert
.
isNumber
(
constant
);
assert
.
eq
(
constant
,
42
);
assert
.
throws
(()
=>
{
constant
=
200
;
},
TypeError
,
`
Attempted
to assign to readonly property
.`);