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