Sign in
chromium
/
external
/
github.com
/
WebAssembly
/
spec
/
16a91bd
/
.
/
test
/
js-api
/
memory
/
toString.any.js
blob: 4e15d75ea20f1ebfeba5dc7c8a9a52c253dd01bf [
file
] [
log
] [
blame
]
// META: global=jsshell
test
(()
=>
{
const
argument
=
{
"initial"
:
0
};
const
memory
=
new
WebAssembly
.
Memory
(
argument
);
assert_class_string
(
memory
,
"WebAssembly.Memory"
);
},
"Object.prototype.toString on an Memory"
);