summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug725003.js
blob: 45564529d576a536169053fd7ebbae73898327d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function TestCase(n, d, e, a) {
  this.name = n;
  this.description = d;
  this.expect = e;
  this.actual = a;
  this.passed = getTestCaseResult(e, a);
  this.reason = '';
}
function getTestCaseResult(expected, actual) {}
var obj = new Function();
for (var i = 0; i < 100; i++) {
        obj['-1'] = new Array();
    assertEq(obj['-1'] == null, false);
    obj = new TestCase();
}