f4d4051521
Object.prototype.hasOwnProperty should use JSReceiver::HasOwnProperty for proxies. BUG=v8:1543 LOG=N Review URL: https://codereview.chromium.org/1480213004 Cr-Commit-Position: refs/heads/master@{#32475}
40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
// Copyright 2015 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-proxies
|
|
|
|
var handler = {};
|
|
var target = {a:1};
|
|
var proxy = new Proxy(target, handler);
|
|
|
|
assertTrue(target.hasOwnProperty('a'));
|
|
assertTrue(proxy.hasOwnProperty('a'));
|
|
assertFalse(target.hasOwnProperty('b'));
|
|
assertFalse(proxy.hasOwnProperty('b'));
|
|
|
|
|
|
handler.has = function() {
|
|
return false;
|
|
}
|
|
assertTrue(target.hasOwnProperty('a'));
|
|
assertFalse(proxy.hasOwnProperty('a'));
|
|
assertFalse(target.hasOwnProperty('b'));
|
|
assertFalse(proxy.hasOwnProperty('b'));
|
|
|
|
handler.has = function() {
|
|
return true;
|
|
}
|
|
assertTrue(target.hasOwnProperty('a'));
|
|
assertTrue(proxy.hasOwnProperty('a'));
|
|
assertFalse(target.hasOwnProperty('b'));
|
|
assertTrue(proxy.hasOwnProperty('b'));
|
|
|
|
handler.has = function() {
|
|
throw Error();
|
|
}
|
|
assertTrue(target.hasOwnProperty('a'));
|
|
assertThrows(function(){ proxy.hasOwnProperty('a') }, Error);
|
|
assertFalse(target.hasOwnProperty('b'));
|
|
assertThrows(function(){ proxy.hasOwnProperty('b') }, Error);
|