6 references to SourceToPreviousSymbolMatcher
Microsoft.CodeAnalysis (6)
Emit\EditAndContinue\DefinitionMap.cs (6)
109
return
SourceToPreviousSymbolMatcher
.MapDefinition(definition) ??
110
(SourceToMetadataSymbolMatcher !=
SourceToPreviousSymbolMatcher
? SourceToMetadataSymbolMatcher.MapDefinition(definition) : null);
115
return
SourceToPreviousSymbolMatcher
.MapNamespace(@namespace) ??
116
(SourceToMetadataSymbolMatcher !=
SourceToPreviousSymbolMatcher
? SourceToMetadataSymbolMatcher.MapNamespace(@namespace) : null);
148
var mappedDef = (Cci.IMethodDefinition?)
SourceToPreviousSymbolMatcher
.MapDefinition(methodDef);
281
symbolMap =
SourceToPreviousSymbolMatcher
;