OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // Flags: --allow-natives-syntax |
| 6 |
| 7 // Generate a function {f} containing a large array literal of doubles. |
| 8 eval("function f() { return [" + String("0.1,").repeat(65535) + "] }"); |
| 9 |
| 10 // Running the function once will initialize the boilerplate. |
| 11 assertEquals(65535, f().length); |
| 12 |
| 13 // Running the function again will perform cloning. |
| 14 assertEquals(65535, f().length); |
| 15 |
| 16 // Running the function as optimized code next. |
| 17 %OptimizeFunctionOnNextCall(f); |
| 18 assertEquals(65535, f().length); |
OLD | NEW |