1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 08:54:07 +03:00

🔥 the bridge.

This commit is contained in:
Rob Rix 2015-12-17 14:43:16 -05:00
parent 5e1bf1377b
commit 0564f6af70
2 changed files with 0 additions and 85 deletions

View File

@ -1,68 +0,0 @@
#include "bridge.h"
#include <assert.h>
#include <stdio.h>
void ts_document_root_node_p(TSDocument *document, TSNode *outNode) {
assert(document != NULL);
assert(outNode != NULL);
*outNode = ts_document_root_node(document);
}
TSLanguage *ts_language_c_use() {
return ts_language_c();
}
TSLanguage *ts_language_javascript_use() {
return ts_language_javascript();
}
const char *ts_node_p_name(const TSNode *node, const TSDocument *document) {
assert(node != NULL);
assert(node->data != NULL);
assert(document != NULL);
return ts_node_name(*node, document);
}
size_t ts_node_p_named_child_count(const TSNode *node) {
assert(node != NULL);
assert(node->data != NULL);
return ts_node_named_child_count(*node);
}
void ts_node_p_named_child(const TSNode *node, size_t index, TSNode *outNode) {
assert(node != NULL);
assert(node->data != NULL);
assert(outNode != NULL);
TSNode temp = ts_node_named_child(*node, index);
if (temp.data == NULL) {
printf("got broken child for index %ld\n", index);
}
assert(temp.data != NULL);
*outNode = temp;
}
size_t ts_node_p_pos_chars(const TSNode *node) {
assert(node != NULL);
assert(node->data != NULL);
return ts_node_pos(*node).chars;
}
size_t ts_node_p_size_chars(const TSNode *node) {
assert(node != NULL);
assert(node->data != NULL);
return ts_node_size(*node).chars;
}
size_t ts_node_p_start_point(const TSNode *node) {
assert(node != NULL);
assert(node->data != NULL);
return ts_node_start_point(*node).row;
}
size_t ts_node_p_end_point(const TSNode *node) {
assert(node != NULL);
assert(node->data != NULL);
return ts_node_end_point(*node).row;
}

View File

@ -1,17 +0,0 @@
#include "tree_sitter/runtime.h"
extern TSLanguage *ts_language_c();
extern TSLanguage *ts_language_javascript();
void ts_document_root_node_p(TSDocument *document, TSNode *outNode);
const char *ts_node_p_name(const TSNode *node, const TSDocument *document);
size_t ts_node_p_named_child_count(const TSNode *node);
void ts_node_p_named_child(const TSNode *node, size_t index, TSNode *outNode);
size_t ts_node_p_pos_chars(const TSNode *node);
size_t ts_node_p_size_chars(const TSNode *node);
size_t ts_node_p_start_point(const TSNode *node);
size_t ts_node_p_end_point(const TSNode *node);