2014-10-29 10:18:16 +00:00
|
|
|
// 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;
|
2017-10-12 10:00:48 +00:00
|
|
|
var LargeN = 1e4;
|
2014-10-29 10:18:16 +00:00
|
|
|
var keys;
|
|
|
|
|
|
|
|
|
2017-10-12 10:00:48 +00:00
|
|
|
function SetupSmiKeys(count = 2 * N) {
|
|
|
|
keys = Array.from({ length : count }, (v, i) => i);
|
2014-10-29 10:18:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-10-12 10:00:48 +00:00
|
|
|
function SetupStringKeys(count = 2 * N) {
|
|
|
|
keys = Array.from({ length : count }, (v, i) => 's' + i);
|
2014-10-29 10:18:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-10-12 10:00:48 +00:00
|
|
|
function SetupObjectKeys(count = 2 * N) {
|
|
|
|
keys = Array.from({ length : count }, (v, i) => ({}));
|
2014-10-29 10:18:16 +00:00
|
|
|
}
|