summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Proxy/getPrototypeOf/not-extensible-same-proto.js
blob: 3ee48b1581756351dcdeab35935a6718c5e4f718 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 9.5.1
description: >
    Return trap result is target is not extensible, but trap result has the same
    value as target.[[GetPrototypeOf]] result.
info: |
    [[GetPrototypeOf]] ( )

    ...
    1. Let handler be the value of the [[ProxyHandler]] internal slot of O.
    ...
    4. Let target be the value of the [[ProxyTarget]] internal slot of O.
    5. Let trap be GetMethod(handler, "getPrototypeOf").
    ...
    8. Let handlerProto be Call(trap, handler, «target»).
    ...
    11. Let extensibleTarget be IsExtensible(target).
    ...
    14. Let targetProto be target.[[GetPrototypeOf]]().
    ...
    17. Return handlerProto.

features: [Proxy]
---*/

var target = Object.create(Array.prototype);

var p = new Proxy(target, {
  getPrototypeOf: function() {
    return Array.prototype;
  }
});

Object.preventExtensions(target);

assert.sameValue(Object.getPrototypeOf(p), Array.prototype);

reportCompare(0, 0);