| // Copyright 2017 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. |
| Object.defineProperty(obj, 'value', { |
| const has = function(target, prop) { |
| assertEquals('value', prop); |
| return false; // Need to return false to trigger GetOwnProperty call. |
| const get = function(target, prop) { |
| assertEquals('value', prop); |
| const set = function(target, prop, value) { |
| assertEquals('value', prop); |
| return true; // Need to return true to trigger GetOwnProperty call. |
| const proxy = new Proxy(obj, { has, get, set }); |
| assertFalse(Reflect.has(proxy, 'value')); |
| assertEquals('nope', proxy.value = 'nope'); |
| assertEquals('yep', proxy.value); |