2014-07-17 23:29:11 -07:00
|
|
|
#ifndef RUNTIME_NODE_H_
|
|
|
|
|
#define RUNTIME_NODE_H_
|
|
|
|
|
|
|
|
|
|
#include "tree_sitter/parser.h"
|
2015-07-31 15:47:48 -07:00
|
|
|
#include "runtime/length.h"
|
2014-07-18 18:52:08 -07:00
|
|
|
#include "runtime/tree.h"
|
2014-07-17 23:29:11 -07:00
|
|
|
|
2015-07-31 15:47:48 -07:00
|
|
|
TSNode ts_node_make(const TSTree *, TSLength);
|
2014-07-17 23:29:11 -07:00
|
|
|
|
|
|
|
|
#endif
|