blob: b48475a96ba8ec295fb5a49de553f22a2b3fcce1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// |jit-test| allow-oom
loadFile(`
disassemble(function() {
return assertDeepEq(x.concat(obj), [1, 2, 3, "hey"]);
})
`);
function loadFile(lfVarx) {
oomTest(new Function(lfVarx));
}
|