-
Notifications
You must be signed in to change notification settings - Fork 132
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 <[email protected]>
- Loading branch information
1 parent
7a3635f
commit 6f12635
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule pgn
updated
25 files
+100 −0 | .github/workflows/publish.yml | |
+1 −1 | Cargo.toml | |
+26 −0 | MANIFEST.in | |
+1 −1 | Makefile | |
+1 −1 | Package.swift | |
+41 −1 | README.md | |
+1 −1 | binding.gyp | |
+1 −1 | bindings/go/binding.go | |
+46 −6 | bindings/python/tree_sitter_pgn.egg-info/PKG-INFO | |
+5 −1 | bindings/python/tree_sitter_pgn.egg-info/SOURCES.txt | |
+0 −10 | bindings/rust/build.rs | |
+0 −0 | examples/succeeding/notation/implicit_capture_notation.pgn | |
+36 −21 | grammar.js | |
+2 −1 | package.json | |
+1 −1 | pyproject.toml | |
+1 −1 | setup.py | |
+535 −18 | src/grammar.json | |
+13 −4 | src/node-types.json | |
+15,242 −9,787 | src/parser.c | |
+39 −0 | src/scanner.c | |
+65 −0 | test/corpus/comments.txt | |
+21 −0 | test/corpus/header.txt | |
+88 −0 | test/corpus/numbering.txt | |
+27 −0 | test/corpus/san.txt | |
+ − | tree-sitter-pgn.wasm |