-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #464 from semgrep/nmote/rust4
chore: Update tree-sitter-rust (4/4)
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule tree-sitter-rust
updated
31 files
+20 −0 | .eslintrc.js | |
+8 −0 | .gitattributes | |
+59 −0 | .github/ISSUE_TEMPLATE/bug_report.yml | |
+1 −0 | .github/ISSUE_TEMPLATE/config.yml | |
+36 −0 | .github/ISSUE_TEMPLATE/feature_request.yml | |
+15 −11 | .github/workflows/ci.yml | |
+22 −0 | .github/workflows/fuzz.yml | |
+19 −0 | .github/workflows/lint.yml | |
+103 −0 | .github/workflows/publish.yml | |
+0 −33 | .github/workflows/publish_crate.yml | |
+2 −3 | .gitignore | |
+6 −5 | .npmignore | |
+7 −12 | Cargo.toml | |
+21 −9 | README.md | |
+6 −7 | bindings/rust/README.md | |
+260 −0 | examples/weird-exprs.rs | |
+296 −243 | grammar.js | |
+18 −3 | package.json | |
+0 −1 | script/known_failures.txt | |
+395 −137 | src/grammar.json | |
+120 −21 | src/node-types.json | |
+148,138 −131,651 | src/parser.c | |
+3 −3 | src/scanner.c | |
+13 −0 | test/corpus/async.txt | |
+40 −0 | test/corpus/declarations.txt | |
+32 −9 | test/corpus/expressions.txt | |
+18 −0 | test/corpus/literals.txt | |
+0 −0 | test/corpus/macros.txt | |
+0 −0 | test/corpus/patterns.txt | |
+0 −0 | test/corpus/source_files.txt | |
+0 −0 | test/corpus/types.txt |