blob: c8d3fe7e4b77ec42d678711a7bdf7f0b1cfe2150 [file] [log] [blame]
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001// 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.
9var obj = {};
10
11for (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}