summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Proxy/function-prototype.js
blob: 915fc3fd80468c8b2ac34c58afd8c8babbaf713a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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`"
);

reportCompare(0, 0);