summaryrefslogtreecommitdiff
path: root/deps/v8/src/builtins/proxy-get-prototype-of.tq
blob: 653d4503d16477e58e41bd71fe162c56c8238000 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// Copyright 2019 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.

#include 'src/builtins/builtins-proxy-gen.h'

namespace proxy {

  // ES #sec-proxy-object-internal-methods-and-internal-slots-isextensible
  // https://tc39.github.io/ecma262/#sec-proxy-object-internal-methods-and-internal-slots-isextensible
  transitioning builtin
  ProxyGetPrototypeOf(implicit context: Context)(proxy: JSProxy): JSAny {
    PerformStackCheck();
    const kTrapName: constexpr string = 'getPrototypeOf';
    try {
      // 1. Let handler be O.[[ProxyHandler]].
      // 2. If handler is null, throw a TypeError exception.
      // 3. Assert: Type(handler) is Object.
      assert(proxy.handler == Null || Is<JSReceiver>(proxy.handler));
      const handler =
          Cast<JSReceiver>(proxy.handler) otherwise ThrowProxyHandlerRevoked;

      // 4. Let target be O.[[ProxyTarget]].
      const target = proxy.target;

      // 5. Let trap be ? GetMethod(handler, "getPrototypeOf").
      // 6. If trap is undefined, then (see 6.a below).
      const trap: Callable = GetMethod(handler, kTrapName)
          otherwise goto TrapUndefined(target);

      // 7. Let handlerProto be ? Call(trap, handler, « target »).
      const handlerProto = Call(context, trap, handler, target);

      // 8. If Type(handlerProto) is neither Object nor Null, throw a TypeError
      // exception.
      if (!Is<JSReceiver>(handlerProto)) {
        goto ThrowProxyGetPrototypeOfInvalid;
      }

      // 9. Let extensibleTarget be ? IsExtensible(target).
      // 10. If extensibleTarget is true, return handlerProto.
      const extensibleTarget: JSAny = object::ObjectIsExtensible(target);
      assert(extensibleTarget == True || extensibleTarget == False);
      if (extensibleTarget == True) {
        return handlerProto;
      }

      // 11. Let targetProto be ? target.[[GetPrototypeOf]]().
      const targetProto = object::ObjectGetPrototypeOf(target);

      // 12. If SameValue(handlerProto, targetProto) is false, throw a TypeError
      // exception.
      // 13. Return handlerProto.
      if (SameValue(targetProto, handlerProto)) {
        return handlerProto;
      }
      ThrowTypeError(kProxyGetPrototypeOfNonExtensible);
    }
    label TrapUndefined(target: JSAny) {
      // 6.a. Return ? target.[[GetPrototypeOf]]().
      return object::ObjectGetPrototypeOf(target);
    }
    label ThrowProxyHandlerRevoked deferred {
      ThrowTypeError(kProxyRevoked, kTrapName);
    }
    label ThrowProxyGetPrototypeOfInvalid deferred {
      ThrowTypeError(kProxyGetPrototypeOfInvalid);
    }
  }
}