Skip to content

Commit

Permalink
! Marked inherited interfaces in Super Quick Info
Browse files Browse the repository at this point in the history
  • Loading branch information
wmjordan committed Mar 22, 2018
1 parent 1d4a9f7 commit 12a409f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Codist/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.6.0.0")]
[assembly: AssemblyFileVersion("2.6.0.692")]
[assembly: AssemblyFileVersion("2.6.0.694")]
6 changes: 5 additions & 1 deletion Codist/Views/CSharpQuickInfoSourceProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,11 @@ void ShowInterfaces(IList<object> output, ITypeSymbol type, int position) {
disposable = item;
continue;
}
stack.Children.Add(ToUIText(item.ToMinimalDisplayParts(_SemanticModel, position)));
var t = ToUIText(item.ToMinimalDisplayParts(_SemanticModel, position));
if (showAll && type.Interfaces.Contains(item) == false) {
t.AddText(" (inherited)");
}
stack.Children.Add(t);
}
if (disposable == null && showAll == false) {
foreach (var item in type.AllInterfaces) {
Expand Down

0 comments on commit 12a409f

Please sign in to comment.