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-02-06 10:42:24 -08:00
|
|
|
// - utf8proc
|
2018-11-13 15:35:14 -08:00
|
|
|
|
2019-03-08 21:22:13 -08:00
|
|
|
#define _POSIX_C_SOURCE 200112L
|
2019-02-06 10:42:24 -08:00
|
|
|
#define UTF8PROC_STATIC
|
|
|
|
|
|
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"
|