1 write to EditsPerSecond
AnalyzerRunner (1)
DiagnosticAnalyzerRunner.cs (1)
486EditsPerSecond = editsPerSecond;
4 references to EditsPerSecond
AnalyzerRunner (4)
DiagnosticAnalyzerRunner.cs (4)
121Console.WriteLine($"{document.FilePath ?? document.Name}: {currentDocumentPerformance.EditsPerSecond:0.00} ({currentDocumentPerformance.AllocatedBytesPerEdit} bytes)"); 125var sumOfDocumentAverages = documentPerformance.Where(x => x.Key.ProjectId == projectId).Sum(x => x.Value.EditsPerSecond); 133var slowestFiles = documentPerformance.OrderBy(pair => pair.Value.EditsPerSecond).GroupBy(pair => pair.Key.ProjectId); 141Console.WriteLine($" {document.FilePath ?? document.Name}: {pair.Value.EditsPerSecond:0.00} ({pair.Value.AllocatedBytesPerEdit} bytes)");