1 // Copyright 2014 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 // Adding a property via Object.defineProperty should not be taken as hint that 8 // we construct a dictionary, quite the opposite. 9 var obj = {}; 10 11 for (var i = 0; i < 100; i++) { 12 Object.defineProperty(obj, "x" + i, { value: 31415 }); 13 Object.defineProperty(obj, "y" + i, { 14 get: function() { return 42; }, 15 set: function(value) { } 16 }); 17 assertTrue(%HasFastProperties(obj)); 18 } 19