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: --es-staging 6 7 function push_a_lot(arr) { 8 for (var i = 0; i < 2e4; i++) { 9 arr.push(i); 10 } 11 return arr; 12 } 13 14 __v_13 = push_a_lot([]); 15