2019-01-30 21:43:44 -08:00
|
|
|
// The Tree-sitter library can be built by compiling this one source file.
|
2018-11-13 15:35:14 -08:00
|
|
|
//
|
|
|
|
|
// The following directories must be added to the include path:
|
|
|
|
|
// - include
|
|
|
|
|
|
2019-03-08 21:22:13 -08:00
|
|
|
#define _POSIX_C_SOURCE 200112L
|
2019-02-06 10:42:24 -08:00
|
|
|
|
2021-12-17 19:53:02 +08:00
|
|
|
#include "./alloc.c"
|
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"
|
2019-09-09 15:41:13 -07:00
|
|
|
#include "./query.c"
|
2019-01-04 17:33:34 -08:00
|
|
|
#include "./stack.c"
|
|
|
|
|
#include "./subtree.c"
|
|
|
|
|
#include "./tree_cursor.c"
|
|
|
|
|
#include "./tree.c"
|