@@ -208,19 +208,23 @@ class EscapableHandleScopeWrapper {
208
208
bool escape_called_;
209
209
};
210
210
211
+ static
211
212
napi_handle_scope JsHandleScopeFromV8HandleScope (HandleScopeWrapper* s) {
212
213
return reinterpret_cast <napi_handle_scope>(s);
213
214
}
214
215
216
+ static
215
217
HandleScopeWrapper* V8HandleScopeFromJsHandleScope (napi_handle_scope s) {
216
218
return reinterpret_cast <HandleScopeWrapper*>(s);
217
219
}
218
220
221
+ static
219
222
napi_escapable_handle_scope JsEscapableHandleScopeFromV8EscapableHandleScope (
220
223
EscapableHandleScopeWrapper* s) {
221
224
return reinterpret_cast <napi_escapable_handle_scope>(s);
222
225
}
223
226
227
+ static
224
228
EscapableHandleScopeWrapper*
225
229
V8EscapableHandleScopeFromJsEscapableHandleScope (
226
230
napi_escapable_handle_scope s) {
@@ -234,18 +238,22 @@ V8EscapableHandleScopeFromJsEscapableHandleScope(
234
238
static_assert (sizeof (v8::Local<v8::Value>) == sizeof (napi_value),
235
239
" Cannot convert between v8::Local<v8::Value> and napi_value" );
236
240
241
+ static
237
242
napi_deferred JsDeferredFromV8Persistent (v8::Persistent<v8::Value>* local) {
238
243
return reinterpret_cast <napi_deferred>(local);
239
244
}
240
245
246
+ static
241
247
v8::Persistent<v8::Value>* V8PersistentFromJsDeferred (napi_deferred local) {
242
248
return reinterpret_cast <v8::Persistent<v8::Value>*>(local);
243
249
}
244
250
251
+ static
245
252
napi_value JsValueFromV8LocalValue (v8::Local<v8::Value> local) {
246
253
return reinterpret_cast <napi_value>(*local);
247
254
}
248
255
256
+ static
249
257
v8::Local<v8::Value> V8LocalValueFromJsValue (napi_value v) {
250
258
v8::Local<v8::Value> local;
251
259
memcpy (&local, &v, sizeof (v));
@@ -648,6 +656,7 @@ class SetterCallbackWrapper
648
656
649
657
// Creates an object to be made available to the static function callback
650
658
// wrapper, used to retrieve the native callback function and data pointer.
659
+ static
651
660
v8::Local<v8::Object> CreateFunctionCallbackData (napi_env env,
652
661
napi_callback cb,
653
662
void * data) {
@@ -673,6 +682,7 @@ v8::Local<v8::Object> CreateFunctionCallbackData(napi_env env,
673
682
// Creates an object to be made available to the static getter/setter
674
683
// callback wrapper, used to retrieve the native getter/setter callback
675
684
// function and data pointer.
685
+ static
676
686
v8::Local<v8::Object> CreateAccessorCallbackData (napi_env env,
677
687
napi_callback getter,
678
688
napi_callback setter,
@@ -715,6 +725,7 @@ const char napi_wrap_name[] = "N-API Wrapper";
715
725
// Search the object's prototype chain for the wrapper object. Usually the
716
726
// wrapper would be the first in the chain, but it is OK for other objects to
717
727
// be inserted in the prototype chain.
728
+ static
718
729
bool FindWrapper (v8::Local<v8::Object> obj,
719
730
v8::Local<v8::Object>* result = nullptr ,
720
731
v8::Local<v8::Object>* parent = nullptr ) {
@@ -748,6 +759,7 @@ static void DeleteEnv(napi_env env, void* data, void* hint) {
748
759
delete env;
749
760
}
750
761
762
+ static
751
763
napi_env GetEnv (v8::Local<v8::Context> context) {
752
764
napi_env result;
753
765
@@ -783,6 +795,7 @@ napi_env GetEnv(v8::Local<v8::Context> context) {
783
795
return result;
784
796
}
785
797
798
+ static
786
799
napi_status Unwrap (napi_env env,
787
800
napi_value js_object,
788
801
void ** result,
@@ -806,6 +819,7 @@ napi_status Unwrap(napi_env env,
806
819
return napi_ok;
807
820
}
808
821
822
+ static
809
823
napi_status ConcludeDeferred (napi_env env,
810
824
napi_deferred deferred,
811
825
napi_value result,
@@ -863,12 +877,8 @@ void napi_module_register_cb(v8::Local<v8::Object> exports,
863
877
864
878
// Registers a NAPI module.
865
879
void napi_module_register (napi_module* mod) {
866
- int module_version = -1 ;
867
- #ifdef EXTERNAL_NAPI
868
- module_version = NODE_MODULE_VERSION;
869
- #endif // EXTERNAL_NAPI
870
880
node::node_module* nm = new node::node_module {
871
- module_version ,
881
+ - 1 ,
872
882
mod->nm_flags ,
873
883
nullptr ,
874
884
mod->nm_filename ,
@@ -882,6 +892,7 @@ void napi_module_register(napi_module* mod) {
882
892
}
883
893
884
894
// Warning: Keep in-sync with napi_status enum
895
+ static
885
896
const char * error_messages[] = {nullptr ,
886
897
" Invalid argument" ,
887
898
" An object was expected" ,
@@ -1218,10 +1229,10 @@ napi_status napi_delete_property(napi_env env,
1218
1229
return GET_RETURN_STATUS (env);
1219
1230
}
1220
1231
1221
- NAPI_EXTERN napi_status napi_has_own_property (napi_env env,
1222
- napi_value object,
1223
- napi_value key,
1224
- bool * result) {
1232
+ napi_status napi_has_own_property (napi_env env,
1233
+ napi_value object,
1234
+ napi_value key,
1235
+ bool * result) {
1225
1236
NAPI_PREAMBLE (env);
1226
1237
CHECK_ARG (env, key);
1227
1238
@@ -3332,6 +3343,7 @@ napi_status napi_adjust_external_memory(napi_env env,
3332
3343
return napi_clear_last_error (env);
3333
3344
}
3334
3345
3346
+ namespace {
3335
3347
namespace uvimpl {
3336
3348
3337
3349
static napi_status ConvertUVErrorCode (int code) {
@@ -3430,6 +3442,7 @@ class Work : public node::AsyncResource {
3430
3442
};
3431
3443
3432
3444
} // end of namespace uvimpl
3445
+ } // end of anonymous namespace
3433
3446
3434
3447
#define CALL_UV (env, condition ) \
3435
3448
do { \
@@ -3512,9 +3525,9 @@ napi_status napi_cancel_async_work(napi_env env, napi_async_work work) {
3512
3525
return napi_clear_last_error (env);
3513
3526
}
3514
3527
3515
- NAPI_EXTERN napi_status napi_create_promise (napi_env env,
3516
- napi_deferred* deferred,
3517
- napi_value* promise) {
3528
+ napi_status napi_create_promise (napi_env env,
3529
+ napi_deferred* deferred,
3530
+ napi_value* promise) {
3518
3531
NAPI_PREAMBLE (env);
3519
3532
CHECK_ARG (env, deferred);
3520
3533
CHECK_ARG (env, promise);
@@ -3531,21 +3544,21 @@ NAPI_EXTERN napi_status napi_create_promise(napi_env env,
3531
3544
return GET_RETURN_STATUS (env);
3532
3545
}
3533
3546
3534
- NAPI_EXTERN napi_status napi_resolve_deferred (napi_env env,
3535
- napi_deferred deferred,
3536
- napi_value resolution) {
3547
+ napi_status napi_resolve_deferred (napi_env env,
3548
+ napi_deferred deferred,
3549
+ napi_value resolution) {
3537
3550
return v8impl::ConcludeDeferred (env, deferred, resolution, true );
3538
3551
}
3539
3552
3540
- NAPI_EXTERN napi_status napi_reject_deferred (napi_env env,
3541
- napi_deferred deferred,
3542
- napi_value resolution) {
3553
+ napi_status napi_reject_deferred (napi_env env,
3554
+ napi_deferred deferred,
3555
+ napi_value resolution) {
3543
3556
return v8impl::ConcludeDeferred (env, deferred, resolution, false );
3544
3557
}
3545
3558
3546
- NAPI_EXTERN napi_status napi_is_promise (napi_env env,
3547
- napi_value promise,
3548
- bool * is_promise) {
3559
+ napi_status napi_is_promise (napi_env env,
3560
+ napi_value promise,
3561
+ bool * is_promise) {
3549
3562
CHECK_ENV (env);
3550
3563
CHECK_ARG (env, promise);
3551
3564
CHECK_ARG (env, is_promise);
@@ -3555,9 +3568,9 @@ NAPI_EXTERN napi_status napi_is_promise(napi_env env,
3555
3568
return napi_clear_last_error (env);
3556
3569
}
3557
3570
3558
- NAPI_EXTERN napi_status napi_run_script (napi_env env,
3559
- napi_value script,
3560
- napi_value* result) {
3571
+ napi_status napi_run_script (napi_env env,
3572
+ napi_value script,
3573
+ napi_value* result) {
3561
3574
NAPI_PREAMBLE (env);
3562
3575
CHECK_ARG (env, script);
3563
3576
CHECK_ARG (env, result);
0 commit comments