n-api: remove extra reference from test

PR-URL: https://github.com/nodejs/node/pull/18542
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
pull/18542/merge
Gabriel Schulhof 2018-02-02 20:34:19 -05:00
parent a555397185
commit d379db31fd
1 changed files with 0 additions and 3 deletions

View File

@ -3,7 +3,6 @@
static double value_ = 1;
static double static_value_ = 10;
napi_ref constructor_;
napi_value GetValue(napi_env env, napi_callback_info info) {
size_t argc = 0;
@ -80,8 +79,6 @@ napi_value Init(napi_env env, napi_value exports) {
NAPI_CALL(env, napi_define_class(env, "MyObject", NAPI_AUTO_LENGTH, New,
NULL, sizeof(properties)/sizeof(*properties), properties, &cons));
NAPI_CALL(env, napi_create_reference(env, cons, 1, &constructor_));
return cons;
}