blob: d5b5e3a5bd3b48f2c73c243066ccc895526e8122 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// |jit-test| slow; 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];
}
}
});
|