/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/src/builtins/proxy.tq
33 строки
1 KB
Michaël Zasso
deps: update V8 to 14.1.146.11
04 окт 2025, 19:47
Не верифицирован
04 окт 2025, 19:47
7772a2d
Код
Авторство
О чём код?
// 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 { extern macro ProxiesCodeStubAssembler::AllocateProxy( implicit context: Context)(JSReceiver, JSReceiver, int32): JSProxy; extern transitioning macro ProxiesCodeStubAssembler::CheckGetSetTrapResult( implicit context: Context)(JSReceiver, JSProxy, Name, Object, constexpr int31): void; extern transitioning macro ProxiesCodeStubAssembler::CheckDeleteTrapResult( implicit context: Context)(JSReceiver, JSProxy, Name): void; extern transitioning macro ProxiesCodeStubAssembler::CheckHasTrapResult( implicit context: Context)(JSReceiver, JSProxy, Name): void; const kProxyGet: constexpr int31 generates 'JSProxy::AccessKind::kGet'; const kProxySet: constexpr int31 generates 'JSProxy::AccessKind::kSet'; type ProxyRevokeFunctionContext extends FunctionContext; extern enum ProxyRevokeFunctionContextSlot extends intptr constexpr 'ProxiesCodeStubAssembler::ProxyRevokeFunctionContextSlot' { kProxySlot: Slot<ProxyRevokeFunctionContext, JSProxy|Null>, kProxyContextLength } }