2018-11-13 15:35:14 -08:00
|
|
|
// The Tree-sitter runtime library can be built by compiling this
|
|
|
|
|
// one source file.
|
|
|
|
|
//
|
|
|
|
|
// The following directories must be added to the include path:
|
|
|
|
|
// - src
|
|
|
|
|
// - include
|
|
|
|
|
// - externals/utf8proc
|
|
|
|
|
|
2019-01-04 17:33:34 -08:00
|
|
|
#include "./get_changed_ranges.c"
|
|
|
|
|
#include "./language.c"
|
|
|
|
|
#include "./lexer.c"
|
|
|
|
|
#include "./node.c"
|
|
|
|
|
#include "./parser.c"
|
|
|
|
|
#include "./stack.c"
|
|
|
|
|
#include "./subtree.c"
|
|
|
|
|
#include "./tree_cursor.c"
|
|
|
|
|
#include "./tree.c"
|
|
|
|
|
#include "./utf16.c"
|
2018-11-13 15:35:14 -08:00
|
|
|
#include "utf8proc.c"
|