summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug673766.js
blob: d1bdc3d45ce6228f30de0856c410103b0ef04963 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function TestCase(n, d, e, a) {
    this.name = n
    this.description = d
}
function reportCompare(expected, actual, description) {
    new TestCase
}
var actual = '';
var expect = '';
for (var i = 0; i < 2; ++i) reportCompare(expect, actual, ': 2');
try {
    ({
        valueOf: gc
    } - [])
} catch (prop) {}
function addThis() { return reportCompare(expect, actual, 'ok'); }
Object.defineProperty(Object.prototype, "name", {
    set: function (newValue) {}
});
addThis()