-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule tree-sitter-haskell
updated
22 files
+3 −0 | .gitignore | |
+59 −0 | Cargo.lock | |
+2 −2 | Cargo.toml | |
+65 −3 | README.md | |
+3 −1 | grammar.js | |
+13 −0 | grammar/exp.js | |
+4 −6 | grammar/misc.js | |
+8 −1 | grammar/type.js | |
+122 −40 | queries/highlights.scm | |
+33 −0 | script/parse-example | |
+1 −26 | script/parse-examples | |
+105 −26 | src/grammar.json | |
+283 −2 | src/node-types.json | |
+347,473 −343,107 | src/parser.c | |
+762 −749 | src/scanner.cc | |
+24 −0 | test/corpus/comment.txt | |
+13 −0 | test/corpus/cpp.txt | |
+63 −0 | test/corpus/exp.txt | |
+5 −1 | test/corpus/pat.txt | |
+1 −1 | test/corpus/signature.txt | |
+49 −3 | test/corpus/th.txt | |
+37 −0 | test/corpus/type.txt |