1 implementation of CompatDifferences
Microsoft.DotNet.ApiCompatibility (1)
DifferenceVisitor.cs (1)
16
public IEnumerable<CompatDifference>
CompatDifferences
=> _compatDifferences;
9 references to CompatDifferences
Microsoft.DotNet.ApiCompatibility (9)
ApiComparer.cs (4)
57
return visitor.
CompatDifferences
;
71
return visitor.
CompatDifferences
;
108
return SortCompatDifferencesByInputMetadata(visitor.
CompatDifferences
.ToLookup(c => c.Right, t => t), right);
125
return SortCompatDifferencesByInputMetadata(visitor.
CompatDifferences
.ToLookup(c => c.Left, t => t), left);
IDifferenceVisitor.cs (5)
9
/// A visitor that traverses a given mapping tree and stores differences in the <see cref="
CompatDifferences
"/> collection.
32
/// Visits an <see cref="IAssemblyMapper"/> and stores differences in the <see cref="
CompatDifferences
"/> collection.
38
/// Visits an <see cref="INamespaceMapper"/> and stores differences in the <see cref="
CompatDifferences
"/> collection.
44
/// Visits an <see cref="ITypeMapper"/> and stores differences in the <see cref="
CompatDifferences
"/> collection.
50
/// Visits an <see cref="IMemberMapper"/> and stores differences in the <see cref="
CompatDifferences
"/> collection.