Skip to content

Commit

Permalink
- Fixed a crash in Navi Bar #64
Browse files Browse the repository at this point in the history
  • Loading branch information
wmjordan committed Dec 18, 2018
1 parent cb3acff commit f1d011f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Codist/Helpers/CodeAnalysisHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ public static string GetDeclarationSignature(this SyntaxNode node, int position
case SyntaxKind.ExpressionStatement: return ((ExpressionStatementSyntax)node).Expression.GetExpressionSignature();
case SyntaxKind.Attribute: return ((AttributeSyntax)node).Name.ToString();
case SyntaxKind.AttributeArgumentList: return GetAttributeArgumentListSignature((AttributeArgumentListSyntax)node);
case SyntaxKind.YieldReturnStatement: return ((YieldStatementSyntax)node).Expression.GetExpressionSignature();
case SyntaxKind.YieldReturnStatement: return ((YieldStatementSyntax)node).Expression?.GetExpressionSignature();
case SyntaxKind.GotoStatement:
case SyntaxKind.GotoCaseStatement:
return ((GotoStatementSyntax)node).Expression?.GetExpressionSignature();
Expand Down

0 comments on commit f1d011f

Please sign in to comment.