v8/test/mjsunit/regress/regress-3315.js
adamk 2e4efcfac2 Add a --harmony-object-observe runtime flag (on by default)
To avoid tanking context startup performance, only the actual installation of the
JS-exposed API is flag-guarded. The remainder of the implementation still
resides in the snapshot.

Review URL: https://codereview.chromium.org/1257063003

Cr-Commit-Position: refs/heads/master@{#30017}
2015-08-04 20:53:32 +00:00

29 lines
641 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.
//
// Flags: --harmony-object-observe
var indexZeroCallCount = 0;
var indexOneCallCount = 0;
var lengthCallCount = 0;
var acceptList = {
get 0() {
indexZeroCallCount++;
return 'foo';
},
get 1() {
indexOneCallCount++;
return 'bar';
},
get length() {
lengthCallCount++;
return 1;
}
};
Object.observe({}, function(){}, acceptList);
assertEquals(1, lengthCallCount);
assertEquals(1, indexZeroCallCount);
assertEquals(0, indexOneCallCount);