Skip to content

Commit

Permalink
chore: Bump cpp grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 authored and github-actions[bot] committed Sep 8, 2024
1 parent 7007cbc commit 11edbc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repos/cpp
Submodule cpp updated 55 files
+0 −22 .appveyor.yml
+39 −0 .editorconfig
+0 −20 .eslintrc.js
+8 −7 .gitattributes
+8 −0 .github/dependabot.yml
+44 −19 .github/workflows/ci.yml
+7 −8 .github/workflows/fuzz.yml
+13 −6 .github/workflows/lint.yml
+19 −99 .github/workflows/publish.yml
+37 −6 .gitignore
+0 −4 .npmignore
+0 −9 .travis.yml
+89 −0 Cargo.lock
+11 −6 Cargo.toml
+114 −0 Makefile
+50 −28 Package.swift
+2 −0 README.md
+18 −7 binding.gyp
+16 −0 bindings/c/tree-sitter-cpp.h
+11 −0 bindings/c/tree-sitter-cpp.pc.in
+13 −0 bindings/go/binding.go
+15 −0 bindings/go/binding_test.go
+14 −22 bindings/node/binding.cc
+9 −0 bindings/node/binding_test.js
+28 −0 bindings/node/index.d.ts
+3 −15 bindings/node/index.js
+11 −0 bindings/python/tests/test_binding.py
+37 −0 bindings/python/tree_sitter_cpp/__init__.py
+7 −0 bindings/python/tree_sitter_cpp/__init__.pyi
+27 −0 bindings/python/tree_sitter_cpp/binding.c
+0 −0 bindings/python/tree_sitter_cpp/py.typed
+0 −36 bindings/rust/README.md
+7 −7 bindings/rust/build.rs
+23 −35 bindings/rust/lib.rs
+2 −2 bindings/swift/TreeSitterCPP/cpp.h
+12 −0 bindings/swift/TreeSitterCPPTests/TreeSitterCPPTests.swift
+9 −0 go.mod
+34 −0 go.sum
+94 −93 grammar.js
+1,498 −0 package-lock.json
+82 −19 package.json
+33 −0 pyproject.toml
+1 −5 queries/highlights.scm
+62 −0 setup.py
+1,437 −1,128 src/grammar.json
+383 −348 src/node-types.json
+409,281 −537,170 src/parser.c
+8 −9 src/scanner.c
+54 −0 src/tree_sitter/alloc.h
+290 −0 src/tree_sitter/array.h
+44 −8 src/tree_sitter/parser.h
+75 −1 test/corpus/ambiguities.txt
+2 −1 test/corpus/c/expressions.txt
+22 −15 test/corpus/declarations.txt
+9 −2 test/corpus/definitions.txt

0 comments on commit 11edbc6

Please sign in to comment.