-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3793855
commit 012adde
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule tree-sitter
updated
23 files
+0 −0 | .gitmodules | |
+12 −8 | cli/src/generate/build_tables/build_lex_table.rs | |
+11 −0 | cli/src/generate/render.rs | |
+1 −0 | cli/src/generate/tables.rs | |
+1 −0 | cli/src/tests/corpus_test.rs | |
+34 −4 | cli/src/tests/parser_test.rs | |
+189 −13 | docs/section-2-using-parsers.md | |
+5 −2 | highlight/include/tree_sitter/highlight.h | |
+14 −11 | highlight/src/lib.rs | |
+27 −17 | lib/binding_web/binding.js | |
+1 −1 | lib/binding_web/package.json | |
+3 −0 | lib/binding_web/test/tree-test.js | |
+1 −1 | lib/binding_web/tree-sitter-web.d.ts | |
+5 −5 | lib/include/tree_sitter/api.h | |
+3 −1 | lib/include/tree_sitter/parser.h | |
+188 −124 | lib/src/lexer.c | |
+1 −1 | lib/src/lexer.h | |
+3 −4 | lib/src/tree.c | |
+1 −1 | lib/src/unicode/umachine.h | |
+9 −1 | script/build-fuzzers | |
+16 −7 | test/fixtures/error_corpus/json_errors.txt | |
+57 −0 | test/fuzz/fuzzer.cc | |
+1 −1 | test/fuzz/gen-dict.py |