| // Copyright (C) 2015 the V8 project authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| Throws a TypeError exception if trap result and target property descriptors |
| 20. Let valid be IsCompatiblePropertyDescriptor (extensibleTarget, |
| 21. If valid is false, throw a TypeError exception. |
| var p = new Proxy(target, { |
| getOwnPropertyDescriptor: function(t, prop) { |
| return Object.getOwnPropertyDescriptor(foo, "bar"); |
| Object.preventExtensions(target); |
| assert.throws(TypeError, function() { |
| Object.getOwnPropertyDescriptor(p, "bar"); |