mirror of
https://github.com/neovim/neovim.git
synced 2025-11-27 12:40:39 +00:00
tree-sitter/tree-sitter commit edb569310005c66838b7d69fa60850acac6abeee Included files are: lib/include/tree-sitter/*.h lib/src/*.[ch] lib/src/unicode/* LICENSE
18 lines
424 B
C
18 lines
424 B
C
// The Tree-sitter library can be built by compiling this one source file.
|
|
//
|
|
// The following directories must be added to the include path:
|
|
// - include
|
|
|
|
#define _POSIX_C_SOURCE 200112L
|
|
|
|
#include "./get_changed_ranges.c"
|
|
#include "./language.c"
|
|
#include "./lexer.c"
|
|
#include "./node.c"
|
|
#include "./parser.c"
|
|
#include "./query.c"
|
|
#include "./stack.c"
|
|
#include "./subtree.c"
|
|
#include "./tree_cursor.c"
|
|
#include "./tree.c"
|