aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/compiler/spread-call.js
blob: 0a8527ed76a01f5264d3e5e6c8f3dc50f8e041cc (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// Copyright 2016 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Flags: --allow-natives-syntax

function tests() {
  "use strict"
  function countArgs() { return arguments.length; }

  // Array params
  assertEquals(3, countArgs(...[1, 2, 3]));                       // Smi
  assertEquals(4, countArgs(...[1, 2, , 3]));                     // HoleySmi
  assertEquals(3, countArgs(...[1.1, 2, 3]));                     // Double
  assertEquals(4, countArgs(...[1.1, 2, , 3]));                   // HoleyDouble
  assertEquals(3, countArgs(...[{valueOf: () => 0}, 1.1, '2']));  // Object
  assertEquals(
      4, countArgs(...[{valueOf: () => 0}, 1.1, , '2']));  // HoleyObject

  // Smi param
  assertThrows(() => countArgs(...1), TypeError);

  // Object param
  assertThrows(() => countArgs(...{0: 0}), TypeError);

  // Strict arguments
  assertEquals(0, countArgs(...arguments));
}

%PrepareFunctionForOptimization(tests);
tests();
tests();
%OptimizeFunctionOnNextCall(tests);
tests();

function testRest(...args) {
  function countArgs() { return arguments.length; }
  assertEquals(3, countArgs(...args));
  assertEquals(4, countArgs(1, ...args));
  assertEquals(5, countArgs(1, 2, ...args));
}
%PrepareFunctionForOptimization(testRest);
testRest(1, 2, 3);
testRest(1, 2, 3);
%OptimizeFunctionOnNextCall(testRest);
testRest(1, 2, 3);

function testRestAndArgs(a, b, ...args) {
  function countArgs() { return arguments.length; }
  assertEquals(1, countArgs(...args));
  assertEquals(2, countArgs(b, ...args));
  assertEquals(3, countArgs(a, b, ...args));
  assertEquals(4, countArgs(1, a, b, ...args));
  assertEquals(5, countArgs(1, 2, a, b, ...args));
}
%PrepareFunctionForOptimization(testRestAndArgs);
testRestAndArgs(1, 2, 3);
testRestAndArgs(1, 2, 3);
%OptimizeFunctionOnNextCall(testRestAndArgs);
testRestAndArgs(1, 2, 3);

function testArgumentsStrict() {
  "use strict"
  function countArgs() { return arguments.length; }
  assertEquals(3, countArgs(...arguments));
  assertEquals(4, countArgs(1, ...arguments));
  assertEquals(5, countArgs(1, 2, ...arguments));
}
%PrepareFunctionForOptimization(testArgumentsStrict);
testArgumentsStrict(1, 2, 3);
testArgumentsStrict(1, 2, 3);
%OptimizeFunctionOnNextCall(testArgumentsStrict);
testArgumentsStrict(1, 2, 3);

function testArgumentsSloppy() {
  function countArgs() { return arguments.length; }
  assertEquals(3, countArgs(...arguments));
  assertEquals(4, countArgs(1, ...arguments));
  assertEquals(5, countArgs(1, 2, ...arguments));
}
%PrepareFunctionForOptimization(testArgumentsSloppy);
testArgumentsSloppy(1, 2, 3);
testArgumentsSloppy(1, 2, 3);
%OptimizeFunctionOnNextCall(testArgumentsSloppy);
testArgumentsSloppy(1, 2, 3);