Skip to content

Commit

Permalink
Merge pull request #492 from semgrep/update_csharp_before_big_one
Browse files Browse the repository at this point in the history
Update to a more recent tree-sitter-c-sharp before the big refactor
  • Loading branch information
aryx authored Jul 2, 2024
2 parents 25eb642 + 6abe7a1 commit 2700b86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lang/semgrep-grammars/src/tree-sitter-c-sharp
Submodule tree-sitter-c-sharp updated 70 files
+39 −0 .editorconfig
+0 −36 .github/workflows/build.yml
+35 −0 .github/workflows/ci.yml
+112 −0 Makefile
+23 −26 README.md
+17 −6 binding.gyp
+16 −0 bindings/c/tree-sitter-c_sharp.h
+11 −0 bindings/c/tree-sitter-c_sharp.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_c_sharp/__init__.py
+1 −0 bindings/python/tree_sitter_c_sharp/__init__.pyi
+27 −0 bindings/python/tree_sitter_c_sharp/binding.c
+0 −0 bindings/python/tree_sitter_c_sharp/py.typed
+3 −0 bindings/rust/build.rs
+2 −2 bindings/swift/TreeSitterCSharp/csharp.h
+0 −481 corpus/attributes.txt
+0 −663 corpus/classes.txt
+0 −59 corpus/enums.txt
+0 −335 corpus/interfaces.txt
+0 −1,263 corpus/literals.txt
+0 −436 corpus/query-syntax.txt
+0 −527 corpus/records.txt
+0 −273 corpus/source-file-structure.txt
+0 −2,033 corpus/statements.txt
+0 −140 corpus/structs.txt
+0 −83 corpus/type-events.txt
+0 −382 corpus/type-fields.txt
+0 −494 corpus/type-methods.txt
+0 −233 corpus/type-properties.txt
+54 −40 grammar.js
+25 −4 package.json
+33 −0 pyproject.toml
+26 −21 queries/highlights.scm
+5 −5 script/file_sizes.txt
+60 −0 setup.py
+307 −149 src/grammar.json
+714 −483 src/node-types.json
+951,566 −1,175,225 src/parser.c
+54 −0 src/tree_sitter/alloc.h
+290 −0 src/tree_sitter/array.h
+54 −13 src/tree_sitter/parser.h
+0 −3 test.js
+338 −0 test/corpus/attributes.txt
+365 −0 test/corpus/classes.txt
+231 −229 test/corpus/contextual-keywords.txt
+22 −0 test/corpus/enums.txt
+1,155 −957 test/corpus/expressions.txt
+47 −65 test/corpus/identifiers.txt
+210 −0 test/corpus/interfaces.txt
+793 −0 test/corpus/literals.txt
+62 −138 test/corpus/preprocessor.txt
+265 −0 test/corpus/query-syntax.txt
+193 −0 test/corpus/records.txt
+186 −0 test/corpus/source-file-structure.txt
+1,086 −0 test/corpus/statements.txt
+73 −0 test/corpus/structs.txt
+67 −0 test/corpus/type-events.txt
+255 −0 test/corpus/type-fields.txt
+295 −0 test/corpus/type-methods.txt
+368 −368 test/corpus/type-operators.txt
+163 −0 test/corpus/type-properties.txt
+1 −1 test/highlight/baseline.cs
+95 −0 test/highlight/operators.cs
+67 −0 test/highlight/types.cs
+25 −0 test/highlight/variableDeclarations.cs

0 comments on commit 2700b86

Please sign in to comment.