summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/new-object-with-dynamic-slots.js
blob: a6c7625234c12964b5653d6dee850cc3d046998c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
function Foo() {
    this.a = 1;
    this.b = 1;
    this.c = 1;
    this.d = 1;
    this.e = 1;
    this.f = 1;
    this.g = 1;
    this.h = 1;
    this.i = 1;
    this.j = 1;
    this.k = 1;
    this.l = 1;
    this.m = 1;
    this.n = 1;
    this.o = 1;
    this.p = 1;
    this.q = 1;
    this.r = 1;
    this.s = 1;
}

function fn() {
    var a = [];
    for (var i = 0; i < 50; i++)
        a.push(new Foo());
    var total = 0;
    for (var i = 0; i < a.length; i++) {
        var v = a[i];
        total += v.a + v.b + v.c + v.d + v.e + v.f + v.g + v.h + v.i + v.j + v.k + v.l + v.m + v.n + v.o + v.p + v.q + v.r + v.s;
    }
    assertEq(total, 950);
}
fn();