summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/spread-call-optimized.js
blob: afb1368f137502bc6bc182856a1ea35e23dcf8b2 (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
// Call_Scripted
let f = function(a, b, c, d, e) {
    return a * 10000 + b * 1000 + c * 100 + d * 10 + e;
};
for (let i = 0; i < 4; i++) {
    assertEq(f(...[1, 2, 3, 4, 5]), 12345);
}

// Call_Scripted (constructing)
let A = function(a, b, c, d, e) {
    this.v = a * 10000 + b * 1000 + c * 100 + d * 10 + e;
};
for (let i = 0; i < 4; i++) {
    assertEq(new A(...[1, 2, 3, 4, 5]).v, 12345);
}

// Call_Native
for (let i = 0; i < 4; i++) {
    assertEq(Math.max(...[1, 2, 3, 4, 5]), 5);
}

// Call_Native (constructing)
for (let i = 0; i < 4; i++) {
    assertEq(new Date(...[2014, 4, 28, 8, 16, 1]).getTime(),
             new Date(2014, 4, 28, 8, 16, 1).getTime());
}