2014-07-17 23:29:11 -07:00
|
|
|
#ifndef RUNTIME_NODE_H_
|
|
|
|
|
#define RUNTIME_NODE_H_
|
|
|
|
|
|
|
|
|
|
#include "tree_sitter/parser.h"
|
2016-05-20 20:26:03 -07:00
|
|
|
#include "runtime/tree.h"
|
2014-07-17 23:29:11 -07:00
|
|
|
|
2015-12-04 10:45:30 -08:00
|
|
|
TSNode ts_node_make(const TSTree *, size_t character, size_t byte, size_t row);
|
2014-07-17 23:29:11 -07:00
|
|
|
|
|
|
|
|
#endif
|