Skip to content

Commit

Permalink
chore: Bump go grammar (#530)
Browse files Browse the repository at this point in the history
Co-authored-by: jcs090218 <[email protected]>
  • Loading branch information
github-actions[bot] and jcs090218 authored Apr 14, 2024
1 parent 5e0ef57 commit 8c712cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repos/go
Submodule go updated 52 files
+39 −0 .editorconfig
+0 −21 .eslintrc.js
+10 −5 .gitattributes
+8 −0 .github/dependabot.yml
+0 −8 .github/pull_request_template.md
+70 −19 .github/workflows/ci.yml
+13 −6 .github/workflows/lint.yml
+23 −0 .github/workflows/publish.yml
+0 −103 .github/workflows/release.yml
+33 −11 .gitignore
+0 −7 .npmignore
+7 −8 Cargo.toml
+70 −73 Makefile
+20 −13 Package.swift
+3 −2 README.md
+7 −5 binding.gyp
+16 −0 bindings/c/tree-sitter-go.h
+11 −0 bindings/c/tree-sitter-go.pc.in
+0 −16 bindings/c/tree-sitter.h.in
+0 −11 bindings/c/tree-sitter.pc.in
+12 −0 bindings/go/binding.go
+15 −0 bindings/go/binding_test.go
+5 −0 bindings/go/go.mod
+14 −24 bindings/node/binding.cc
+28 −0 bindings/node/index.d.ts
+4 −16 bindings/node/index.js
+5 −0 bindings/python/tree_sitter_go/__init__.py
+1 −0 bindings/python/tree_sitter_go/__init__.pyi
+27 −0 bindings/python/tree_sitter_go/binding.c
+0 −0 bindings/python/tree_sitter_go/py.typed
+0 −36 bindings/rust/README.md
+5 −6 bindings/rust/build.rs
+15 −25 bindings/rust/lib.rs
+1 −1 bindings/swift/TreeSitterGo/go.h
+107 −97 grammar.js
+1,490 −0 package-lock.json
+83 −15 package.json
+33 −0 pyproject.toml
+3 −3 queries/highlights.scm
+0 −1 script/known-failures.txt
+0 −47 script/parse-examples
+56 −0 setup.py
+200 −149 src/grammar.json
+91 −62 src/node-types.json
+23,501 −23,186 src/parser.c
+54 −0 src/tree_sitter/alloc.h
+290 −0 src/tree_sitter/array.h
+8 −2 src/tree_sitter/parser.h
+52 −38 test/corpus/declarations.txt
+30 −24 test/corpus/expressions.txt
+8 −5 test/corpus/literals.txt
+62 −51 test/corpus/types.txt

0 comments on commit 8c712cb

Please sign in to comment.