Initial commit

This commit is contained in:
2024-12-15 15:35:32 +02:00
commit 9a923cded1
49 changed files with 8742 additions and 0 deletions

20
bindings/node/binding.cc generated Normal file
View File

@@ -0,0 +1,20 @@
#include <napi.h>
typedef struct TSLanguage TSLanguage;
extern "C" TSLanguage *tree_sitter_bruno();
// "tree-sitter", "language" hashed with BLAKE2
const napi_type_tag LANGUAGE_TYPE_TAG = {
0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16
};
Napi::Object Init(Napi::Env env, Napi::Object exports) {
exports["name"] = Napi::String::New(env, "bruno");
auto language = Napi::External<TSLanguage>::New(env, tree_sitter_bruno());
language.TypeTag(&LANGUAGE_TYPE_TAG);
exports["language"] = language;
return exports;
}
NODE_API_MODULE(tree_sitter_bruno_binding, Init)