1 instantiation of RemovedApiLine
Microsoft.CodeAnalysis.PublicApiAnalyzers (1)
DeclarePublicApiAnalyzer.cs (1)
187removedBuilder.Add(new RemovedApiLine(removedText, apiLine));
5 references to RemovedApiLine
Microsoft.CodeAnalysis.PublicApiAnalyzers (5)
DeclarePublicApiAnalyzer.cs (2)
160var removedBuilder = ArrayBuilder<RemovedApiLine>.GetInstance(); 255var removedBuilder = ArrayBuilder<RemovedApiLine>.GetInstance();
DeclarePublicApiAnalyzer.Impl.cs (3)
61private sealed record ApiData(ImmutableArray<ApiLine> ApiList, ImmutableArray<RemovedApiLine> RemovedApiList, int NullableLineNumber) 63public static readonly ApiData Empty = new(ImmutableArray<ApiLine>.Empty, ImmutableArray<RemovedApiLine>.Empty, NullableLineNumber: -1); 772foreach (var markedAsRemoved in _unshippedData.RemovedApiList)