Source code
Revision control
Copy as Markdown
Other Tools
// |jit-test| --blinterp-eager
gc();
function f(x) {
new Uint8Array(x);
}
f(0);
oomTest(function () {
f(2048);
});
// |jit-test| --blinterp-eager
gc();
function f(x) {
new Uint8Array(x);
}
f(0);
oomTest(function () {
f(2048);
});