tree-sitter/src/runtime/document.h
2016-01-29 16:40:38 -08:00

18 lines
303 B
C

#ifndef RUNTIME_DOCUMENT_H_
#define RUNTIME_DOCUMENT_H_
#include "tree_sitter/parser.h"
#include "runtime/parser.h"
#include "runtime/tree.h"
#include <stdbool.h>
struct TSDocument {
TSParser parser;
TSInput input;
TSTree *tree;
size_t parse_count;
bool valid;
bool owns_input;
};
#endif