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