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