Reorganize repo, add rust CLI and binding code,

This commit is contained in:
Max Brunsfeld 2019-01-04 17:31:49 -08:00
commit 47607cecf4
221 changed files with 11359 additions and 18038 deletions

19
lib/src/runtime.c Normal file
View file

@ -0,0 +1,19 @@
// 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 "runtime/get_changed_ranges.c"
#include "runtime/language.c"
#include "runtime/lexer.c"
#include "runtime/node.c"
#include "runtime/parser.c"
#include "runtime/stack.c"
#include "runtime/subtree.c"
#include "runtime/tree_cursor.c"
#include "runtime/tree.c"
#include "runtime/utf16.c"
#include "utf8proc.c"