forked from dnSpy/dnSpy
-
-
Notifications
You must be signed in to change notification settings - Fork 456
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6b7d3c5
commit 2f150e6
Showing
4 changed files
with
83 additions
and
1 deletion.
There are no files selected for viewing
11 changes: 10 additions & 1 deletion
11
Extensions/dnSpy.Analyzer/Properties/dnSpy.Analyzer.Resources.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
Copyright (C) 2024 [email protected] | ||
This file is part of dnSpy | ||
dnSpy is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
dnSpy is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with dnSpy. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Threading; | ||
using dnlib.DotNet; | ||
using dnSpy.Analyzer.Properties; | ||
using dnSpy.Contracts.Decompiler; | ||
using dnSpy.Contracts.Text; | ||
|
||
namespace dnSpy.Analyzer.TreeNodes { | ||
sealed class SubtypesNode : SearchNode { | ||
readonly TypeDef analyzedType; | ||
|
||
public SubtypesNode(TypeDef analyzedType) => | ||
this.analyzedType = analyzedType ?? throw new ArgumentNullException(nameof(analyzedType)); | ||
|
||
protected override void Write(ITextColorWriter output, IDecompiler decompiler) => | ||
output.Write(BoxedTextColor.Text, dnSpy_Analyzer_Resources.SubtypesTreeNode); | ||
|
||
protected override IEnumerable<AnalyzerTreeNodeData> FetchChildren(CancellationToken ct) { | ||
var analyzer = new ScopedWhereUsedAnalyzer<AnalyzerTreeNodeData>(Context.DocumentService, analyzedType, FindReferencesInType); | ||
return analyzer.PerformAnalysis(ct); | ||
} | ||
|
||
IEnumerable<AnalyzerTreeNodeData> FindReferencesInType(TypeDef type) { | ||
if (analyzedType.IsInterface && type.HasInterfaces) { | ||
for (int i = 0; i < type.Interfaces.Count; i++) { | ||
if (IsEqual(type.Interfaces[i].Interface)) { | ||
yield return new TypeNode(type) { Context = Context }; | ||
break; | ||
} | ||
} | ||
|
||
yield break; | ||
} | ||
|
||
if (type.IsEnum || !type.IsClass) | ||
yield break; | ||
|
||
if (IsEqual(type.BaseType)) | ||
yield return new TypeNode(type) { Context = Context }; | ||
} | ||
|
||
private bool IsEqual(ITypeDefOrRef itm) => CheckEquals(analyzedType, itm.GetScopeType()); | ||
|
||
public static bool CanShow(TypeDef type) => (type.IsClass || type.IsInterface) && !type.IsEnum && !type.IsSealed; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters