Skip to content
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/c-sharp
Submodule c-sharp updated 55 files
+1 −1 .gitattributes
+0 −37 .github/workflows/build.yml
+35 −0 .github/workflows/ci.yml
+33 −0 .github/workflows/publish_crate.yml
+1 −0 .gitignore
+6 −5 Cargo.toml
+1 −1 LICENSE
+38 −0 Package.swift
+39 −77 README.md
+3 −0 bindings/rust/lib.rs
+16 −0 bindings/swift/TreeSitterCSharp/csharp.h
+319 −156 corpus/attributes.txt
+357 −228 corpus/classes.txt
+602 −7 corpus/contextual-keywords.txt
+11 −10 corpus/enums.txt
+2,372 −843 corpus/expressions.txt
+134 −50 corpus/identifiers.txt
+198 −125 corpus/interfaces.txt
+933 −263 corpus/literals.txt
+223 −83 corpus/preprocessor.txt
+170 −161 corpus/query-syntax.txt
+397 −102 corpus/records.txt
+173 −62 corpus/source-file-structure.txt
+1,315 −833 corpus/statements.txt
+72 −53 corpus/structs.txt
+48 −32 corpus/type-events.txt
+237 −121 corpus/type-fields.txt
+320 −175 corpus/type-methods.txt
+819 −102 corpus/type-operators.txt
+130 −93 corpus/type-properties.txt
+567 −224 grammar.js
+11 −5 package.json
+254 −0 queries/highlights.scm
+23 −46 queries/tags.scm
+0 −19 script/fetch-examples
+5 −0 script/file_sizes.txt
+0 −0 script/known_failures.txt
+29 −2 script/parse-examples
+3 −0 script/update-file-sizes
+3,529 −1,536 src/grammar.json
+2,364 −570 src/node-types.json
+1,282,864 −507,002 src/parser.c
+8 −0 src/scanner.c
+14 −7 src/tree_sitter/parser.h
+986 −0 test/highlight/baseline.cs
+95 −0 test/highlight/operators.cs
+67 −0 test/highlight/types.cs
+10 −0 test/highlight/var.cs
+25 −0 test/highlight/variableDeclarations.cs
+2 −0 tools/highlight-test-generator/.gitignore
+26 −0 tools/highlight-test-generator/.vscode/launch.json
+41 −0 tools/highlight-test-generator/.vscode/tasks.json
+177 −0 tools/highlight-test-generator/Generator.cs
+6 −0 tools/highlight-test-generator/Generator.csproj
+5 −0 tools/highlight-test-generator/run-generator