n-api: remove unused Test function

Currently when building the following warning is emitted:

../test_symbol.c:4:19:
warning: unused function 'Test' [-Wunused-function]
static napi_value Test(napi_env env, napi_callback_info info) {
                  ^
1 warning generated.

This commit removes this unused function.

PR-URL: https://github.com/nodejs/node/pull/20320
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
This commit is contained in:
Daniel Bevenius 2018-04-26 05:47:59 +02:00 committed by Ruben Bridgewater
parent 03e25b653a
commit 6606a2604a
No known key found for this signature in database
GPG Key ID: F07496B3EB3C1762

View File

@ -1,31 +1,6 @@
#include <node_api.h>
#include "../common.h"
static napi_value Test(napi_env env, napi_callback_info info) {
size_t argc = 1;
napi_value args[1];
NAPI_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL));
NAPI_ASSERT(env, argc >= 1, "Wrong number of arguments");
napi_valuetype valuetype;
NAPI_CALL(env, napi_typeof(env, args[0], &valuetype));
NAPI_ASSERT(env, valuetype == napi_symbol,
"Wrong type of arguments. Expects a symbol.");
char buffer[128];
size_t buffer_size = 128;
NAPI_CALL(env, napi_get_value_string_utf8(
env, args[0], buffer, buffer_size, NULL));
napi_value output;
NAPI_CALL(env, napi_create_string_utf8(env, buffer, buffer_size, &output));
return output;
}
static napi_value New(napi_env env, napi_callback_info info) {
size_t argc = 1;
napi_value args[1];