mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
784 B
27 lines
784 B
#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)
|
|
|