-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: bump tree_sitter/core from
12fb318
to ee06325
Bumps [tree_sitter/core](https://github.com/tree-sitter/tree-sitter) from `12fb318` to `ee06325`. - [Release notes](https://github.com/tree-sitter/tree-sitter/releases) - [Commits](tree-sitter/tree-sitter@12fb318...ee06325) --- updated-dependencies: - dependency-name: tree_sitter/core dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
- Loading branch information
1 parent
2f7889d
commit edd1629
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule core
updated
20 files
+92 −1 | CHANGELOG.md | |
+39 −1 | cli/src/generate/prepare_grammar/flatten_grammar.rs | |
+3 −3 | cli/src/generate/templates/_cargo.toml | |
+0 −2 | cli/src/generate/templates/gitignore | |
+1 −1 | cli/src/generate/templates/go.mod | |
+1 −1 | cli/src/main.rs | |
+25 −0 | cli/src/tests/query_test.rs | |
+27 −0 | cli/src/tests/tree_test.rs | |
+1 −0 | docs/section-7-playground.html | |
+10 −2 | lib/binding_rust/bindings.rs | |
+34 −0 | lib/binding_rust/lib.rs | |
+6 −2 | lib/binding_web/binding.c | |
+4 −0 | lib/binding_web/binding.js | |
+11 −0 | lib/binding_web/test/query-test.js | |
+1 −0 | lib/binding_web/tree-sitter-web.d.ts | |
+16 −0 | lib/include/tree_sitter/api.h | |
+2 −2 | lib/src/parser.c | |
+36 −2 | lib/src/query.c | |
+3 −2 | lib/src/tree_cursor.c | |
+1 −0 | script/generate-bindings |