refactor(bindings)!: convert node bindings to NAPI
Co-authored-by: Boris Verkhovskiy <boris.verk@gmail.com> Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: ObserverOfTime <chronobserver@disroot.org>
This commit is contained in:
parent
3d65ffa5af
commit
e87cf7ef15
4 changed files with 35 additions and 36 deletions
|
|
@ -2,8 +2,8 @@
|
|||
"targets": [
|
||||
{
|
||||
"target_name": "tree_sitter_PARSER_NAME_binding",
|
||||
"dependencies": ["<!(node -p \"require('node-addon-api').targets\"):node_addon_api_except"],
|
||||
"include_dirs": [
|
||||
"<!(node -e \"require('nan')\")",
|
||||
"src",
|
||||
],
|
||||
"sources": [
|
||||
|
|
@ -16,7 +16,15 @@
|
|||
],
|
||||
"cflags_cc": [
|
||||
"-Wno-cast-function-type",
|
||||
]
|
||||
],
|
||||
"conditions": [
|
||||
["OS=='mac'", {
|
||||
"cflags+": ["-fvisibility=hidden"],
|
||||
"xcode_settings": {
|
||||
"GCC_SYMBOLS_PRIVATE_EXTERN": "YES", # -fvisibility=hidden
|
||||
}
|
||||
}]
|
||||
],
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,29 +1,13 @@
|
|||
#include "nan.h"
|
||||
#include <node.h>
|
||||
|
||||
using namespace v8;
|
||||
#include <napi.h>
|
||||
|
||||
typedef struct TSLanguage TSLanguage;
|
||||
|
||||
extern "C" const TSLanguage *tree_sitter_PARSER_NAME(void);
|
||||
extern "C" TSLanguage *tree_sitter_PARSER_NAME();
|
||||
|
||||
namespace {
|
||||
|
||||
NAN_METHOD(New) {}
|
||||
|
||||
void Init(Local<Object> exports, Local<Object> module) {
|
||||
Local<FunctionTemplate> tpl = Nan::New<FunctionTemplate>(New);
|
||||
tpl->SetClassName(Nan::New("Language").ToLocalChecked());
|
||||
tpl->InstanceTemplate()->SetInternalFieldCount(1);
|
||||
|
||||
Local<Function> constructor = Nan::GetFunction(tpl).ToLocalChecked();
|
||||
Local<Object> instance = constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked();
|
||||
Nan::SetInternalFieldPointer(instance, 0, (void *)tree_sitter_PARSER_NAME());
|
||||
|
||||
Nan::Set(instance, Nan::New("name").ToLocalChecked(), Nan::New("PARSER_NAME").ToLocalChecked());
|
||||
Nan::Set(module, Nan::New("exports").ToLocalChecked(), instance);
|
||||
Napi::Object Init(Napi::Env env, Napi::Object exports) {
|
||||
exports["name"] = Napi::String::New(env, "PARSER_NAME");
|
||||
exports["language"] = Napi::External<TSLanguage>::New(env, tree_sitter_PARSER_NAME());
|
||||
return exports;
|
||||
}
|
||||
|
||||
NODE_MODULE_CONTEXT_AWARE(tree_sitter_PARSER_NAME_binding, Init)
|
||||
|
||||
} // namespace
|
||||
NODE_API_MODULE(tree_sitter_PARSER_NAME_binding, Init)
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"LOWER_PARSER_NAME"
|
||||
],
|
||||
"dependencies": {
|
||||
"nan": "^2.18.0"
|
||||
"node-addon-api": "^7.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"tree-sitter-cli": "^CLI_VERSION"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue