blob: 20b34d65d7150cf0a3119065f8156e92c2e41f52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// |jit-test| skip-if: !('oomTest' in this)
var x = ``.split();
oomTest(function() {
var lfGlobal = newGlobal({sameZoneAs: this});
for (lfLocal in this) {
if (!(lfLocal in lfGlobal)) {
lfGlobal[lfLocal] = this[lfLocal];
}
}
});
|