Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

n-api: remove unused Test function #20320

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 0 additions & 25 deletions test/addons-napi/test_symbol/test_symbol.c
Original file line number Diff line number Diff line change
@@ -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];
Expand Down