]> git.r.bdr.sh - rbdr/tree-sitter-api-notation/blame - bindings/node/binding.cc
Initial Commit
[rbdr/tree-sitter-api-notation] / bindings / node / binding.cc
CommitLineData
dc87cd89
RBR
1#include "tree_sitter/parser.h"
2#include <node.h>
3#include "nan.h"
4
5using namespace v8;
6
7extern "C" TSLanguage * tree_sitter_apinotation();
8
9namespace {
10
11NAN_METHOD(New) {}
12
13void Init(Local<Object> exports, Local<Object> module) {
14 Local<FunctionTemplate> tpl = Nan::New<FunctionTemplate>(New);
15 tpl->SetClassName(Nan::New("Language").ToLocalChecked());
16 tpl->InstanceTemplate()->SetInternalFieldCount(1);
17
18 Local<Function> constructor = Nan::GetFunction(tpl).ToLocalChecked();
19 Local<Object> instance = constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked();
20 Nan::SetInternalFieldPointer(instance, 0, tree_sitter_apinotation());
21
22 Nan::Set(instance, Nan::New("name").ToLocalChecked(), Nan::New("apinotation").ToLocalChecked());
23 Nan::Set(module, Nan::New("exports").ToLocalChecked(), instance);
24}
25
26NODE_MODULE(tree_sitter_apinotation_binding, Init)
27
28} // namespace