Source code

Revision control

Copy as Markdown

Other Tools

// |jit-test| skip-if: !('toResizableBuffer' in WebAssembly.Memory.prototype)
// Tests if toResizableBuffer and toFixedLengthBuffer have AutoSetNewObjectMetadata.
enableShellAllocationMetadataBuilder();
var m = new WebAssembly.Memory({
initial: 0,
maximum: 0
});
m.toResizableBuffer();
m.toFixedLengthBuffer();
if (wasmThreadsEnabled()) {
var m = new WebAssembly.Memory({
initial: 0,
maximum: 0,
shared: true,
});
m.toResizableBuffer();
}