1 override of SourceToPreviousSymbolMatcher
Microsoft.CodeAnalysis.CSharp (1)
Emitter\EditAndContinue\CSharpDefinitionMap.cs (1)
37public override SymbolMatcher SourceToPreviousSymbolMatcher => _sourceToPrevious;
6 references to SourceToPreviousSymbolMatcher
Microsoft.CodeAnalysis (6)
Emit\EditAndContinue\DefinitionMap.cs (6)
109return SourceToPreviousSymbolMatcher.MapDefinition(definition) ?? 110(SourceToMetadataSymbolMatcher != SourceToPreviousSymbolMatcher ? SourceToMetadataSymbolMatcher.MapDefinition(definition) : null); 115return SourceToPreviousSymbolMatcher.MapNamespace(@namespace) ?? 116(SourceToMetadataSymbolMatcher != SourceToPreviousSymbolMatcher ? SourceToMetadataSymbolMatcher.MapNamespace(@namespace) : null); 148var mappedDef = (Cci.IMethodDefinition?)SourceToPreviousSymbolMatcher.MapDefinition(methodDef); 281symbolMap = SourceToPreviousSymbolMatcher;