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 Dec 15, 2024
1 parent a40c676 commit c69294c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repos/cpp
Submodule cpp updated 59 files
+0 −22 .appveyor.yml
+46 −0 .editorconfig
+0 −20 .eslintrc.js
+34 −7 .gitattributes
+8 −0 .github/dependabot.yml
+44 −19 .github/workflows/ci.yml
+6 −9 .github/workflows/fuzz.yml
+13 −6 .github/workflows/lint.yml
+31 −99 .github/workflows/publish.yml
+40 −6 .gitignore
+0 −4 .npmignore
+0 −9 .travis.yml
+58 −0 CMakeLists.txt
+96 −0 Cargo.lock
+19 −7 Cargo.toml
+94 −0 Makefile
+27 −28 Package.swift
+2 −0 README.md
+18 −7 binding.gyp
+16 −0 bindings/c/tree-sitter-cpp.h
+10 −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
+7 −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
+24 −36 bindings/rust/lib.rs
+2 −2 bindings/swift/TreeSitterCPP/cpp.h
+12 −0 bindings/swift/TreeSitterCPPTests/TreeSitterCPPTests.swift
+5 −0 eslint.config.mjs
+7 −0 go.mod
+34 −0 go.sum
+129 −97 grammar.js
+1,548 −0 package-lock.json
+47 −37 package.json
+33 −0 pyproject.toml
+1 −5 queries/highlights.scm
+62 −0 setup.py
+1,642 −1,137 src/grammar.json
+445 −362 src/node-types.json
+427,400 −533,884 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
+94 −6 test/corpus/expressions.txt
+55 −0 tree-sitter.json

0 comments on commit c69294c

Please sign in to comment.