Start work on ability to load wasm languages from native lib, via wasmtime

This commit is contained in:
Max Brunsfeld 2022-01-03 10:57:01 -08:00
parent 8883d43bee
commit 3f1a7f9cd4
19 changed files with 2989 additions and 284 deletions

View file

@ -1,8 +1,3 @@
// 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 "./alloc.c"
@ -16,3 +11,7 @@
#include "./subtree.c"
#include "./tree_cursor.c"
#include "./tree.c"
#ifdef TREE_SITTER_FEATURE_WASM
#include "./wasm.c"
#endif