@@ -6279,6 +6279,7 @@ typedef bool (*AccessCheckCallback)(Local<Context> accessing_context,
6279
6279
Local<Object> accessed_object,
6280
6280
Local<Value> data);
6281
6281
6282
+ class CFunction ;
6282
6283
/* *
6283
6284
* A FunctionTemplate is used to create functions at runtime. There
6284
6285
* can only be one function created from a FunctionTemplate in a
@@ -6387,7 +6388,8 @@ class V8_EXPORT FunctionTemplate : public Template {
6387
6388
Local<Value> data = Local<Value>(),
6388
6389
Local<Signature> signature = Local<Signature>(), int length = 0,
6389
6390
ConstructorBehavior behavior = ConstructorBehavior::kAllow,
6390
- SideEffectType side_effect_type = SideEffectType::kHasSideEffect);
6391
+ SideEffectType side_effect_type = SideEffectType::kHasSideEffect,
6392
+ const CFunction* not_available_in_node_v14_yet = nullptr);
6391
6393
6392
6394
/* *
6393
6395
* Creates a function template backed/cached by a private property.
@@ -6418,7 +6420,8 @@ class V8_EXPORT FunctionTemplate : public Template {
6418
6420
*/
6419
6421
void SetCallHandler (
6420
6422
FunctionCallback callback, Local<Value> data = Local<Value>(),
6421
- SideEffectType side_effect_type = SideEffectType::kHasSideEffect);
6423
+ SideEffectType side_effect_type = SideEffectType::kHasSideEffect,
6424
+ const CFunction* not_available_in_node_v14_yet = nullptr);
6422
6425
6423
6426
/* * Set the predefined length property for the FunctionTemplate. */
6424
6427
void SetLength (int length);
@@ -8110,7 +8113,10 @@ class V8_EXPORT Isolate {
8110
8113
array_buffer_allocator_shared(),
8111
8114
external_references(nullptr ),
8112
8115
allow_atomics_wait(true ),
8113
- only_terminate_in_safe_scope(false ) {}
8116
+ only_terminate_in_safe_scope(false ),
8117
+ embedder_wrapper_type_index(-1 ),
8118
+ embedder_wrapper_object_index(-1 ) {}
8119
+
8114
8120
8115
8121
/* *
8116
8122
* Allows the host application to provide the address of a function that is
@@ -8174,6 +8180,10 @@ class V8_EXPORT Isolate {
8174
8180
* Termination is postponed when there is no active SafeForTerminationScope.
8175
8181
*/
8176
8182
bool only_terminate_in_safe_scope;
8183
+
8184
+ // Not available in Node v14 yet.
8185
+ int embedder_wrapper_type_index;
8186
+ int embedder_wrapper_object_index;
8177
8187
};
8178
8188
8179
8189
0 commit comments