mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
a406a32ee9
PR-URL: https://github.com/nodejs/node/pull/15508 Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
28 lines
784 B
C
28 lines
784 B
C
#include <node_api.h>
|
|
#include "../common.h"
|
|
|
|
napi_value Test(napi_env env, napi_callback_info info) {
|
|
napi_fatal_error("test_fatal::Test", NAPI_AUTO_LENGTH,
|
|
"fatal message", NAPI_AUTO_LENGTH);
|
|
return NULL;
|
|
}
|
|
|
|
napi_value TestStringLength(napi_env env, napi_callback_info info) {
|
|
napi_fatal_error("test_fatal::TestStringLength", 16, "fatal message", 13);
|
|
return NULL;
|
|
}
|
|
|
|
napi_value Init(napi_env env, napi_value exports) {
|
|
napi_property_descriptor properties[] = {
|
|
DECLARE_NAPI_PROPERTY("Test", Test),
|
|
DECLARE_NAPI_PROPERTY("TestStringLength", TestStringLength),
|
|
};
|
|
|
|
NAPI_CALL(env, napi_define_properties(
|
|
env, exports, sizeof(properties) / sizeof(*properties), properties));
|
|
|
|
return exports;
|
|
}
|
|
|
|
NAPI_MODULE(NODE_GYP_MODULE_NAME, Init)
|