Skip to content

chore: Bump cpp grammar #511

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion repos/cpp
Submodule cpp updated 62 files
+0 −22 .appveyor.yml
+46 −0 .editorconfig
+0 −20 .eslintrc.js
+34 −7 .gitattributes
+15 −0 .github/FUNDING.yml
+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
+20 −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
+227 −99 grammar.js
+1,548 −0 package-lock.json
+47 −37 package.json
+33 −0 pyproject.toml
+8 −5 queries/highlights.scm
+62 −0 setup.py
+2,174 −1,154 src/grammar.json
+769 −372 src/node-types.json
+434,955 −530,806 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
+53 −15 test/corpus/declarations.txt
+9 −2 test/corpus/definitions.txt
+176 −9 test/corpus/expressions.txt
+215 −0 test/corpus/modules.txt
+7 −0 test/highlight/keywords.cpp
+55 −0 tree-sitter.json