-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: jcs090218 <8685505+jcs090218@users.noreply.github.com>
- Loading branch information
1 parent
d3d52a2
commit 6f42019
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule zig
updated
32 files
+7 −0 | .editorconfig | |
+28 −2 | .gitattributes | |
+10 −6 | .github/workflows/ci.yml | |
+16 −4 | .github/workflows/publish.yml | |
+5 −2 | .gitignore | |
+58 −0 | CMakeLists.txt | |
+21 −14 | Cargo.lock | |
+5 −5 | Cargo.toml | |
+13 −33 | Makefile | |
+25 −0 | Package.resolved | |
+24 −34 | Package.swift | |
+7 −8 | bindings/c/tree-sitter-zig.pc.in | |
+1 −1 | bindings/go/binding_test.go | |
+1 −1 | bindings/node/binding.cc | |
+3 −3 | bindings/node/binding_test.js | |
+5 −1 | bindings/node/index.js | |
+31 −2 | bindings/python/tree_sitter_zig/__init__.py | |
+6 −1 | bindings/python/tree_sitter_zig/__init__.pyi | |
+4 −9 | bindings/rust/lib.rs | |
+4 −42 | eslint.config.mjs | |
+2 −2 | go.mod | |
+2 −2 | go.sum | |
+27 −23 | grammar.js | |
+452 −226 | package-lock.json | |
+15 −20 | package.json | |
+2 −2 | pyproject.toml | |
+90 −58 | src/grammar.json | |
+29 −4 | src/node-types.json | |
+103,819 −100,083 | src/parser.c | |
+4 −4 | src/tree_sitter/alloc.h | |
+2 −1 | src/tree_sitter/array.h | |
+38 −0 | tree-sitter.json |