1 implementation of Left
Microsoft.DotNet.ApiCompatibility (1)
Mapping\ElementMapper.cs (1)
16public T? Left { get; private set; }
17 references to Left
Microsoft.DotNet.ApiCompatibility (12)
Mapping\AssemblyMapper.cs (1)
12/// <see cref="IElementMapper{T}.Left"/> and <see cref="IElementMapper{T}.Right"/>.
Mapping\IAssemblyMapper.cs (2)
11/// <see cref="IElementMapper{T}.Left"/> and <see cref="IElementMapper{T}.Right"/>. 21/// Gets the mappers for the namespaces contained in <see cref="IElementMapper{T}.Left"/> and <see cref="IElementMapper{T}.Right"/>
Mapping\IElementMapper.cs (2)
22/// The <see cref="IMapperSettings"/> used to diff <see cref="Left"/> and <see cref="Right"/>. 45/// (<see cref="IElementMapper{T}.Left"/>, <see cref="IElementMapper{T}.Right"/>).
Mapping\INamespaceMapper.cs (1)
11/// <see cref="IElementMapper{T}.Left"/> and <see cref="IElementMapper{T}.Right"/>.
Mapping\NamespaceMapper.cs (1)
12/// <see cref="IElementMapper{T}.Left"/> and <see cref="IElementMapper{T}.Right"/>.
Rules\IRuleRunner.cs (1)
25/// (<see cref="IElementMapper{T}.Left"/>, <see cref="IElementMapper{T}.Right"/>).
Rules\RuleRunner.cs (4)
53tm.ContainingNamespace.ContainingAssembly.Left?.MetadataInformation ?? MetadataInformation.DefaultLeft, 63Debug.Assert(mm.ContainingType.Left != null); 69mm.ContainingType.Left!, 71mm.ContainingType.ContainingNamespace.ContainingAssembly.Left?.MetadataInformation ?? MetadataInformation.DefaultLeft,
Microsoft.DotNet.ApiCompatibility.Tests (5)
Mapping\AssemblyMapperTests.cs (1)
77Assert.Equal(new string[] { "AssemblyMapperTestNamespace1", "AssemblyMapperTestNamespace2", null }, namespaceMappers.Select(n => n.Left?.Name));
Mapping\AssemblySetMapperTests.cs (1)
135assemblyMappers.Select(asm => asm.Left?.Element.Name));
Mapping\NamespaceMapperTests.cs (1)
69Assert.Equal(new string[] { "A", null }, typeMappers.Select(n => n.Left?.Name));
Mapping\TypeMapperTests.cs (2)
84Assert.Equal(new string[] { "B", "C", null }, nestedTypeMappers.Select(n => n.Left?.Name)); 125Assert.Equal(new string[] { ".ctor", "B", "C", null }, memberMappers.Select(n => n.Left?.Name));