158cd5cb5e
This was inconsistent in the spec in case of has vs get, set. Removing receiver==holder simplifies the lookup; so tentatively removing this additional check which was broken until yesterday anyway. See https://github.com/tc39/ecma262/issues/347 for more information. Review URL: https://codereview.chromium.org/1660903002 Cr-Commit-Position: refs/heads/master@{#33701}
13 lines
398 B
JavaScript
13 lines
398 B
JavaScript
// Copyright 2016 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 o = {__proto__:new Int32Array(100)};
|
|
Object.prototype[1.3] = 10;
|
|
assertEquals(undefined, o[1.3]);
|
|
|
|
var o = new Int32Array(100);
|
|
var o2 = new Int32Array(200);
|
|
o.__proto__ = o2;
|
|
assertEquals(undefined, Reflect.get(o, 1.3, o2));
|