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