1 write to Diagnostics
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\Legacy\RemoveTagHelperChunkGenerator.cs (1)
27Diagnostics = diagnostics;
9 references to Diagnostics
Microsoft.AspNetCore.Razor.Language.UnitTests (1)
DefaultRazorTagHelperBinderPhaseTest.cs (1)
77Assert.Equal(expectedDiagnostics, chunkGenerator.Diagnostics);
Microsoft.CodeAnalysis.Razor.Compiler (8)
Language\DefaultRazorIntermediateNodeLoweringPhase.cs (3)
449if (IsMalformed(removeTagHelperChunkGenerator.Diagnostics)) 468for (var i = 0; i < removeTagHelperChunkGenerator.Diagnostics.Count; i++) 470directiveNode.AddDiagnostic(removeTagHelperChunkGenerator.Diagnostics[i]);
Language\DefaultRazorTagHelperContextDiscoveryPhase.cs (1)
535removeTagHelper.Diagnostics.Add(
Language\Legacy\RemoveTagHelperChunkGenerator.cs (4)
45Enumerable.SequenceEqual(Diagnostics, other.Diagnostics) && 77if (Diagnostics.Count > 0) 80var ids = string.Join(", ", Diagnostics.Select(diagnostic => $"{diagnostic.Id}{diagnostic.Span}"));