mirror of
https://github.com/nodejs/node.git
synced 2025-05-08 09:31:52 +00:00

Partition test/addons-napi into test/js-native-api and test/node-api to isolate the Node.js-agnostic portion of the N-API tests from the Node.js-specific portion. PR-URL: https://github.com/nodejs/node/pull/24557 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
24 lines
588 B
C
24 lines
588 B
C
#include <js_native_api.h>
|
|
#include "../common.h"
|
|
|
|
static napi_value CreateObject(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_value obj;
|
|
NAPI_CALL(env, napi_create_object(env, &obj));
|
|
|
|
NAPI_CALL(env, napi_set_named_property(env, obj, "msg", args[0]));
|
|
|
|
return obj;
|
|
}
|
|
|
|
EXTERN_C_START
|
|
napi_value Init(napi_env env, napi_value exports) {
|
|
NAPI_CALL(env,
|
|
napi_create_function(env, "exports", -1, CreateObject, NULL, &exports));
|
|
return exports;
|
|
}
|
|
EXTERN_C_END
|