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 Jun 16, 2024
1 parent a94cfcf commit ae7bb52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repos/cpp
Submodule cpp updated 48 files
+0 −22 .appveyor.yml
+39 −0 .editorconfig
+0 −20 .eslintrc.js
+11 −7 .gitattributes
+8 −0 .github/dependabot.yml
+40 −19 .github/workflows/ci.yml
+7 −8 .github/workflows/fuzz.yml
+13 −6 .github/workflows/lint.yml
+19 −99 .github/workflows/publish.yml
+37 −5 .gitignore
+0 −4 .npmignore
+0 −9 .travis.yml
+8 −6 Cargo.toml
+111 −0 Makefile
+20 −11 Package.swift
+2 −0 README.md
+8 −6 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
+5 −0 bindings/go/go.mod
+14 −22 bindings/node/binding.cc
+28 −0 bindings/node/index.d.ts
+3 −15 bindings/node/index.js
+5 −0 bindings/python/tree_sitter_cpp/__init__.py
+1 −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
+13 −24 bindings/rust/lib.rs
+2 −2 bindings/swift/TreeSitterCPP/cpp.h
+73 −71 grammar.js
+1,495 −0 package-lock.json
+84 −19 package.json
+33 −0 pyproject.toml
+1 −5 queries/highlights.scm
+57 −0 setup.py
+1,229 −925 src/grammar.json
+345 −309 src/node-types.json
+380,958 −520,280 src/parser.c
+8 −9 src/scanner.c
+54 −0 src/tree_sitter/alloc.h
+290 −0 src/tree_sitter/array.h
+43 −8 src/tree_sitter/parser.h
+23 −6 test/corpus/declarations.txt
+9 −2 test/corpus/definitions.txt

0 comments on commit ae7bb52

Please sign in to comment.