5 instantiations of TypeMapper
Microsoft.DotNet.ApiCompatibility (2)
Mapping\NamespaceMapper.cs (1)
96mapper = new TypeMapper(RuleRunner, Settings, Right.Length, this, null);
Mapping\TypeMapper.cs (1)
101mapper = new TypeMapper(RuleRunner, Settings, Right.Length, ContainingNamespace, this);
Microsoft.DotNet.ApiCompatibility.Tests (3)
Mapping\TypeMapperTests.cs (3)
26TypeMapper typeMapper = new(ruleRunner, mapperSettings, rightSetSize, containingNamespace, containingType); 38TypeMapper typeMapper = new(Mock.Of<IRuleRunner>(), Mock.Of<IMapperSettings>(), rightSetSize: 1, Mock.Of<INamespaceMapper>()); 45TypeMapper typeMapper = new(Mock.Of<IRuleRunner>(), Mock.Of<IMapperSettings>(), rightSetSize: 1, Mock.Of<INamespaceMapper>());
5 references to TypeMapper
Microsoft.DotNet.ApiCompatibility (2)
Mapping\INamespaceMapper.cs (1)
21/// Gets all the <see cref="TypeMapper"/> representing the types defined in the namespace including the type forwards.
Rules\RuleRunner.cs (1)
47else if (mapper is TypeMapper tm)
Microsoft.DotNet.ApiCompatibility.Tests (3)
Mapping\TypeMapperTests.cs (3)
26TypeMapper typeMapper = new(ruleRunner, mapperSettings, rightSetSize, containingNamespace, containingType); 38TypeMapper typeMapper = new(Mock.Of<IRuleRunner>(), Mock.Of<IMapperSettings>(), rightSetSize: 1, Mock.Of<INamespaceMapper>()); 45TypeMapper typeMapper = new(Mock.Of<IRuleRunner>(), Mock.Of<IMapperSettings>(), rightSetSize: 1, Mock.Of<INamespaceMapper>());