-
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.
- Loading branch information
1 parent
9fe7517
commit abe4a9c
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule julia
updated
26 files
+28 −0 | .github/workflows/ci.yml | |
+1 −0 | .gitignore | |
+0 −5 | .travis.yml | |
+51 −0 | CONTRIBUTING.md | |
+4 −4 | Cargo.toml | |
+33 −0 | Package.swift | |
+16 −5 | README.md | |
+16 −0 | bindings/swift/TreeSitterJulia/julia.h | |
+0 −197 | corpus/definitions.txt | |
+0 −499 | corpus/expressions.txt | |
+0 −240 | corpus/statements.txt | |
+973 −504 | grammar.js | |
+4 −3 | package.json | |
+12 −193 | script/known-failures.txt | |
+5 −5 | script/parse-examples | |
+7,492 −4,598 | src/grammar.json | |
+2,361 −684 | src/node-types.json | |
+2,084,470 −269,764 | src/parser.c | |
+244 −82 | src/scanner.c | |
+3 −2 | src/tree_sitter/parser.h | |
+195 −0 | test/corpus/collections.txt | |
+578 −0 | test/corpus/definitions.txt | |
+538 −0 | test/corpus/expressions.txt | |
+207 −0 | test/corpus/literals.txt | |
+278 −0 | test/corpus/operators.txt | |
+403 −0 | test/corpus/statements.txt |