tree-sitter-c-sharp
tree-sitter-c-sharp copied to clipboard
Types without curly braces are lacking support
Type declarations such as:
class MyClass1;
class MyClass2();
interface IMyInterface1;
interface IMyInterface2();
enum MyEnum1;
enum MyEnum2();
show up as errors in the syntax tree. The README says that the project supports C# up to v13, so these declarations should be supported.