19 lines
461 B
C
19 lines
461 B
C
// 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
|
|
|
|
#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"
|
|
#include "utf8proc.c"
|