diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2023-09-28 03:44:06 +0200 | 
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2023-09-28 03:44:52 +0200 | 
| commit | 94b1b4ad12c8bb04fc9ff84b1b9c0a707ad675a6 (patch) | |
| tree | f0e2bfad824935c2eb2e9fe22bec07164d038df2 /bindings/node | |
Genesis commit
Diffstat (limited to 'bindings/node')
| -rw-r--r-- | bindings/node/binding.cc | 28 | ||||
| -rw-r--r-- | bindings/node/index.js | 19 | 
2 files changed, 47 insertions, 0 deletions
diff --git a/bindings/node/binding.cc b/bindings/node/binding.cc new file mode 100644 index 0000000..81881bf --- /dev/null +++ b/bindings/node/binding.cc @@ -0,0 +1,28 @@ +#include "tree_sitter/parser.h" +#include <node.h> +#include "nan.h" + +using namespace v8; + +extern "C" TSLanguage * tree_sitter_gsp(); + +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, tree_sitter_gsp()); + +  Nan::Set(instance, Nan::New("name").ToLocalChecked(), Nan::New("gsp").ToLocalChecked()); +  Nan::Set(module, Nan::New("exports").ToLocalChecked(), instance); +} + +NODE_MODULE(tree_sitter_gsp_binding, Init) + +}  // namespace diff --git a/bindings/node/index.js b/bindings/node/index.js new file mode 100644 index 0000000..d0bc87e --- /dev/null +++ b/bindings/node/index.js @@ -0,0 +1,19 @@ +try { +  module.exports = require("../../build/Release/tree_sitter_gsp_binding"); +} catch (error1) { +  if (error1.code !== 'MODULE_NOT_FOUND') { +    throw error1; +  } +  try { +    module.exports = require("../../build/Debug/tree_sitter_gsp_binding"); +  } catch (error2) { +    if (error2.code !== 'MODULE_NOT_FOUND') { +      throw error2; +    } +    throw error1 +  } +} + +try { +  module.exports.nodeTypeInfo = require("../../src/node-types.json"); +} catch (_) {}  |