// 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.varN=10;varkeys;functionSetupSmiKeys(){keys=newArray(N*2);for(vari=0;i<N*2;i++){keys[i]=i;}}functionSetupStringKeys(){keys=newArray(N*2);for(vari=0;i<N*2;i++){keys[i]='s'+i;}}functionSetupObjectKeys(){keys=newArray(N*2);for(vari=0;i<N*2;i++){keys[i]={};}}