mirror of
https://github.com/nodejs/node.git
synced 2025-05-21 15:44:52 +00:00

- Add separate APIs for creating different kinds of numbers, because creating a V8 number value from an integer is faster than creating one from a double. - When getting number values, avoid getting the current context because the context will not actually be used and is expensive to obtain. - When creating values, don't use v8::TryCatch (NAPI_PREAMBLE), because these functions have no possibility of executing JS code. Refs: https://github.com/nodejs/node/issues/14379 PR-URL: https://github.com/nodejs/node/pull/14573 Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
38 lines
1.1 KiB
C
38 lines
1.1 KiB
C
#include <node_api.h>
|
|
#include "../common.h"
|
|
|
|
napi_value Add(napi_env env, napi_callback_info info) {
|
|
size_t argc = 2;
|
|
napi_value args[2];
|
|
NAPI_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL));
|
|
|
|
NAPI_ASSERT(env, argc >= 2, "Wrong number of arguments");
|
|
|
|
napi_valuetype valuetype0;
|
|
NAPI_CALL(env, napi_typeof(env, args[0], &valuetype0));
|
|
|
|
napi_valuetype valuetype1;
|
|
NAPI_CALL(env, napi_typeof(env, args[1], &valuetype1));
|
|
|
|
NAPI_ASSERT(env, valuetype0 == napi_number && valuetype1 == napi_number,
|
|
"Wrong argument type. Numbers expected.");
|
|
|
|
double value0;
|
|
NAPI_CALL(env, napi_get_value_double(env, args[0], &value0));
|
|
|
|
double value1;
|
|
NAPI_CALL(env, napi_get_value_double(env, args[1], &value1));
|
|
|
|
napi_value sum;
|
|
NAPI_CALL(env, napi_create_double(env, value0 + value1, &sum));
|
|
|
|
return sum;
|
|
}
|
|
|
|
void Init(napi_env env, napi_value exports, napi_value module, void* priv) {
|
|
napi_property_descriptor desc = DECLARE_NAPI_PROPERTY("add", Add);
|
|
NAPI_CALL_RETURN_VOID(env, napi_define_properties(env, exports, 1, &desc));
|
|
}
|
|
|
|
NAPI_MODULE(addon, Init)
|