Skip to content

Commit

Permalink
just before the big one
Browse files Browse the repository at this point in the history
  • Loading branch information
aryx committed Jul 2, 2024
1 parent 7ede44f commit 6abe7a1
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 51 files
+39 −0 .editorconfig
+112 −0 Makefile
+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 −663 corpus/classes.txt
+0 −59 corpus/enums.txt
+0 −335 corpus/interfaces.txt
+0 −1,263 corpus/literals.txt
+0 −527 corpus/records.txt
+0 −2,039 corpus/statements.txt
+0 −140 corpus/structs.txt
+25 −4 package.json
+33 −0 pyproject.toml
+60 −0 setup.py
+2,435 −3,802 src/parser.c
+54 −0 src/tree_sitter/alloc.h
+290 −0 src/tree_sitter/array.h
+43 −8 src/tree_sitter/parser.h
+0 −3 test.js
+59 −202 test/corpus/attributes.txt
+365 −0 test/corpus/classes.txt
+0 −0 test/corpus/contextual-keywords.txt
+22 −0 test/corpus/enums.txt
+190 −1 test/corpus/expressions.txt
+30 −48 test/corpus/identifiers.txt
+210 −0 test/corpus/interfaces.txt
+793 −0 test/corpus/literals.txt
+27 −103 test/corpus/preprocessor.txt
+40 −213 test/corpus/query-syntax.txt
+193 −0 test/corpus/records.txt
+47 −134 test/corpus/source-file-structure.txt
+1,086 −0 test/corpus/statements.txt
+73 −0 test/corpus/structs.txt
+10 −26 test/corpus/type-events.txt
+46 −173 test/corpus/type-fields.txt
+79 −278 test/corpus/type-methods.txt
+0 −0 test/corpus/type-operators.txt
+31 −101 test/corpus/type-properties.txt

0 comments on commit 6abe7a1

Please sign in to comment.