We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents addebd4 + fd3ab68 commit 97454baCopy full SHA for 97454ba
BeaKona.AutoInterfaceGenerator/CSharpCodeTextWriter.cs
@@ -1238,6 +1238,10 @@ private string GetSourceIdentifier(ISymbol symbol)
1238
{
1239
return this.GetSourceIdentifier(tupleElement.Identifier);
1240
}
1241
+ else if (syntax is DelegateDeclarationSyntax @delegate)
1242
+ {
1243
+ return this.GetSourceIdentifier(@delegate.Identifier);
1244
+ }
1245
else if (syntax is NamespaceDeclarationSyntax @namespace)
1246
1247
throw new NotSupportedException(syntax.GetType().ToString());
0 commit comments