14 references to GetKey
Microsoft.CodeAnalysis.Features (14)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (14)
2757var oldSymbolInNewCompilation = symbolCache.GetKey(oldSymbol, cancellationToken).Resolve(newModel.Compilation, ignoreAssemblyKey: true, cancellationToken).Symbol; 2758var newSymbolInOldCompilation = symbolCache.GetKey(newSymbol, cancellationToken).Resolve(oldModel.Compilation, ignoreAssemblyKey: true, cancellationToken).Symbol; 2825var containingTypeSymbolKey = symbolCache.GetKey(containingType, cancellationToken); 2873var typeKey = symbolCache.GetKey(newType, cancellationToken); 2969var containingTypeKey = symbolCache.GetKey(oldContainingType, cancellationToken); 3094var containingTypeKey = symbolCache.GetKey(newContainingType, cancellationToken); 3275AddDeleteEditsForMemberAndAccessors(semanticEdits, synthesizedProperty.SetMethod, symbolCache.GetKey(oldProperty.ContainingType, cancellationToken), cancellationToken); 3442var containingSymbolKey = symbolCache.GetKey(oldSymbol.ContainingType, cancellationToken); 3465var symbolKey = symbolCache.GetKey(symbol, cancellationToken); 3472? symbolCache.GetKey(symbol.ContainingType, cancellationToken) 3587var symbolKey = symbolCache.GetKey(newSymbol, cancellationToken); 3626oldSymbol ??= Resolve(newSymbol!, symbolCache.GetKey(newSymbol!, cancellationToken), oldModel.Compilation, cancellationToken); 3627newSymbol ??= Resolve(oldSymbol!, symbolCache.GetKey(oldSymbol!, cancellationToken), newModel.Compilation, cancellationToken); 3712symbolCache.GetKey(oldSymbol, cancellationToken).Resolve(newCompilation, ignoreAssemblyKey: true, cancellationToken).Symbol is { } matchingNewSymbol &&