summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug699166.js
blob: ac4c89eb032539bad5d99bb970e6a174b5eb110f (plain)
1
2
3
4
5
6
7
a = "".__proto__
b = uneval().__proto__
for (var i = 0; i < 2; i++) {
    a.__defineSetter__("valueOf", function() {})
    a + ""
    delete b.valueOf
}