summaryrefslogtreecommitdiff
path: root/js/src/tests/js1_8_5/regress/regress-533876.js
blob: e44bc8a4f26fe32e47554b11439966bee96225f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/licenses/publicdomain/
 * Contributors: Gary Kwong and Jason Orendorff
 */

var savedEval = eval;
var x = [0];
eval();

x.__proto__ = this;  // x has non-dictionary scope
try {
    DIE;
} catch(e) {
}

delete eval;  // force dictionary scope for global
gc();
eval = savedEval;
var f = eval("(function () { return /x/; })");
x.watch('x', f);  // clone property from global to x, including SPROP_IN_DICTIONARY flag

reportCompare("ok", "ok", "bug 533876");