mirror of
https://codeberg.org/ProgramSnail/tree-sitter-lang.git
synced 2025-12-06 22:58:47 +00:00
20 lines
487 B
JavaScript
20 lines
487 B
JavaScript
|
|
try {
|
||
|
|
module.exports = require("../../build/Release/tree_sitter_YOUR_LANGUAGE_NAME_binding");
|
||
|
|
} catch (error1) {
|
||
|
|
if (error1.code !== 'MODULE_NOT_FOUND') {
|
||
|
|
throw error1;
|
||
|
|
}
|
||
|
|
try {
|
||
|
|
module.exports = require("../../build/Debug/tree_sitter_YOUR_LANGUAGE_NAME_binding");
|
||
|
|
} catch (error2) {
|
||
|
|
if (error2.code !== 'MODULE_NOT_FOUND') {
|
||
|
|
throw error2;
|
||
|
|
}
|
||
|
|
throw error1
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
try {
|
||
|
|
module.exports.nodeTypeInfo = require("../../src/node-types.json");
|
||
|
|
} catch (_) {}
|