7a540779ca
Change-Id: I1157ef6baaf60bdbf5d55a1b8f75edb15794baef Bug: v8:6916 Reviewed-on: https://chromium-review.googlesource.com/715800 Reviewed-by: Benedikt Meurer <bmeurer@chromium.org> Commit-Queue: Jaroslav Sevcik <jarin@chromium.org> Cr-Commit-Position: refs/heads/master@{#48724}
23 lines
514 B
JavaScript
23 lines
514 B
JavaScript
// Copyright 2014 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.
|
|
|
|
var N = 10;
|
|
var LargeN = 1e4;
|
|
var keys;
|
|
|
|
|
|
function SetupSmiKeys(count = 2 * N) {
|
|
keys = Array.from({ length : count }, (v, i) => i);
|
|
}
|
|
|
|
|
|
function SetupStringKeys(count = 2 * N) {
|
|
keys = Array.from({ length : count }, (v, i) => 's' + i);
|
|
}
|
|
|
|
|
|
function SetupObjectKeys(count = 2 * N) {
|
|
keys = Array.from({ length : count }, (v, i) => ({}));
|
|
}
|