1 write to DepthOfInheritance
Metrics.Legacy (1)
src\RoslynAnalyzers\Utilities\Compiler\CodeMetrics\CodeAnalysisMetricData.cs (1)
58
DepthOfInheritance
= depthOfInheritance;
6 references to DepthOfInheritance
Metrics.Legacy (6)
src\RoslynAnalyzers\Tools\Metrics\MetricsOutputWriter.cs (2)
103
if (data.
DepthOfInheritance
.HasValue)
105
WriteMetric("DepthOfInheritance", data.
DepthOfInheritance
.Value.ToString(CultureInfo.InvariantCulture), writer);
src\RoslynAnalyzers\Utilities\Compiler\CodeMetrics\CodeAnalysisMetricData.AssemblyMetricData.cs (1)
59
depthOfInheritance = Math.Max(child.
DepthOfInheritance
.GetValueOrDefault(), depthOfInheritance);
src\RoslynAnalyzers\Utilities\Compiler\CodeMetrics\CodeAnalysisMetricData.cs (2)
162
if (
DepthOfInheritance
.HasValue)
164
builder.Append($", DepthInherit: {
DepthOfInheritance
}");
src\RoslynAnalyzers\Utilities\Compiler\CodeMetrics\CodeAnalysisMetricData.NamespaceMetricData.cs (1)
57
depthOfInheritance = Math.Max(child.
DepthOfInheritance
.GetValueOrDefault(), depthOfInheritance);