123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
- From: ishell <[email protected]>
- Date: Mon, 25 Mar 2024 15:45:41 +0100
- Subject: src: do not use deprecated V8 API
- MIME-Version: 1.0
- Content-Type: text/plain; charset=UTF-8
- Content-Transfer-Encoding: 8bit
- Namely:
- - `v8::ObjectTemplate::SetAccessor(v8::Local<v8::String>, ...);`
- - `v8::ObjectTemplate::SetNativeDataProperty` with `AccessControl`
- Refs: https://github.com/v8/v8/commit/46c241eb99557fe8205acac5c526650c3847d180
- Refs: https://github.com/v8/v8/commit/6ec883986bd417e2a42ddb960bd9449deb7e4639
- Co-authored-by: Michaël Zasso <[email protected]>
- PR-URL: https://github.com/nodejs/node/pull/53084
- Reviewed-By: Luigi Pinca <[email protected]>
- Reviewed-By: Tobias Nießen <[email protected]>
- Reviewed-By: James M Snell <[email protected]>
- Reviewed-By: Joyee Cheung <[email protected]>
- (cherry picked from commit 26d5cafff76d3a096ebfd7d7a6279d4b5b190230)
- diff --git a/src/base_object-inl.h b/src/base_object-inl.h
- index da8fed7b3013df10ae02be2070545c74d9a978f0..518b22dabef0974c2e7ecb466669925338524059 100644
- --- a/src/base_object-inl.h
- +++ b/src/base_object-inl.h
- @@ -132,14 +132,14 @@ v8::EmbedderGraph::Node::Detachedness BaseObject::GetDetachedness() const {
-
- template <int Field>
- void BaseObject::InternalFieldGet(
- - v8::Local<v8::String> property,
- + v8::Local<v8::Name> property,
- const v8::PropertyCallbackInfo<v8::Value>& info) {
- info.GetReturnValue().Set(
- info.This()->GetInternalField(Field).As<v8::Value>());
- }
-
- -template <int Field, bool (v8::Value::* typecheck)() const>
- -void BaseObject::InternalFieldSet(v8::Local<v8::String> property,
- +template <int Field, bool (v8::Value::*typecheck)() const>
- +void BaseObject::InternalFieldSet(v8::Local<v8::Name> property,
- v8::Local<v8::Value> value,
- const v8::PropertyCallbackInfo<void>& info) {
- // This could be e.g. value->IsFunction().
- diff --git a/src/base_object.h b/src/base_object.h
- index 5968694e8393d8434fb2ffee411dfac4c93aff29..5c16d0d1b32e2d056f4fcfa0e01781292932a0fa 100644
- --- a/src/base_object.h
- +++ b/src/base_object.h
- @@ -111,10 +111,10 @@ class BaseObject : public MemoryRetainer {
-
- // Setter/Getter pair for internal fields that can be passed to SetAccessor.
- template <int Field>
- - static void InternalFieldGet(v8::Local<v8::String> property,
- + static void InternalFieldGet(v8::Local<v8::Name> property,
- const v8::PropertyCallbackInfo<v8::Value>& info);
- template <int Field, bool (v8::Value::*typecheck)() const>
- - static void InternalFieldSet(v8::Local<v8::String> property,
- + static void InternalFieldSet(v8::Local<v8::Name> property,
- v8::Local<v8::Value> value,
- const v8::PropertyCallbackInfo<void>& info);
-
- diff --git a/src/node_builtins.cc b/src/node_builtins.cc
- index 3e37aa8b0c9696cceb3f3cfab9721f38c74a2fba..78f20de6b127961e9de7b5caaeca702ed7a36e01 100644
- --- a/src/node_builtins.cc
- +++ b/src/node_builtins.cc
- @@ -11,7 +11,6 @@ namespace node {
- namespace builtins {
-
- using v8::Context;
- -using v8::DEFAULT;
- using v8::EscapableHandleScope;
- using v8::Function;
- using v8::FunctionCallbackInfo;
- @@ -720,7 +719,6 @@ void BuiltinLoader::CreatePerIsolateProperties(IsolateData* isolate_data,
- nullptr,
- Local<Value>(),
- None,
- - DEFAULT,
- SideEffectType::kHasNoSideEffect);
-
- target->SetNativeDataProperty(FIXED_ONE_BYTE_STRING(isolate, "builtinIds"),
- @@ -728,7 +726,6 @@ void BuiltinLoader::CreatePerIsolateProperties(IsolateData* isolate_data,
- nullptr,
- Local<Value>(),
- None,
- - DEFAULT,
- SideEffectType::kHasNoSideEffect);
-
- target->SetNativeDataProperty(
- @@ -737,7 +734,6 @@ void BuiltinLoader::CreatePerIsolateProperties(IsolateData* isolate_data,
- nullptr,
- Local<Value>(),
- None,
- - DEFAULT,
- SideEffectType::kHasNoSideEffect);
-
- target->SetNativeDataProperty(FIXED_ONE_BYTE_STRING(isolate, "natives"),
- @@ -745,7 +741,6 @@ void BuiltinLoader::CreatePerIsolateProperties(IsolateData* isolate_data,
- nullptr,
- Local<Value>(),
- None,
- - DEFAULT,
- SideEffectType::kHasNoSideEffect);
-
- SetMethod(isolate, target, "getCacheUsage", BuiltinLoader::GetCacheUsage);
- diff --git a/src/node_external_reference.h b/src/node_external_reference.h
- index 4e2ad9024020fa0851da41da44afccdf188c7044..c4aba23510872d66b58a1adc88cdd1ee85a86cfe 100644
- --- a/src/node_external_reference.h
- +++ b/src/node_external_reference.h
- @@ -64,8 +64,6 @@ class ExternalReferenceRegistry {
- V(CFunctionWithBool) \
- V(const v8::CFunctionInfo*) \
- V(v8::FunctionCallback) \
- - V(v8::AccessorGetterCallback) \
- - V(v8::AccessorSetterCallback) \
- V(v8::AccessorNameGetterCallback) \
- V(v8::AccessorNameSetterCallback) \
- V(v8::GenericNamedPropertyDefinerCallback) \
|