blob: 763117ee07f158eb42e3259766c51ad7f2fb2c91 [file] [log] [blame]
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 26.2.2
description: >
The value of the [[Prototype]] internal slot of the Proxy
constructor is the intrinsic object %FunctionPrototype% (19.2.3).
features: [Proxy]
---*/
assert.sameValue(
Object.getPrototypeOf(Proxy),
Function.prototype,
"`Object.getPrototypeOf(Proxy)` returns `Function.prototype`"
);