rmorisset@apple.com | 0013fa7 | 2018-04-25 23:32:58 +0000 | [diff] [blame] | 1 | "use strict"; |
2 | function f(...v) { | ||||
3 | return g(v); | ||||
4 | } | ||||
5 | function g() { | ||||
6 | return h(); | ||||
7 | } | ||||
8 | function h() { | ||||
9 | } | ||||
10 | |||||
11 | for (let i = 0; i < 10000; ++i) { | ||||
12 | f(0); | ||||
13 | f(0, 0); | ||||
14 | } | ||||
15 | |||||
16 | Object.defineProperty(Array.prototype, "42", {}); |