blob: 0d1d36f5d41317b1ddd4bc333af918a214a531f7 (
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() reportCompare(expect, actual, 'ok');
Object.defineProperty(Object.prototype, "name", {
set: function (newValue) {}
});
addThis()
|