3 instantiations of CapturedParameterKey
Microsoft.CodeAnalysis.Features (3)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (3)
6208return new CapturedParameterKey(ParameterKind.Value); 6213return new CapturedParameterKey(ParameterKind.TopLevelMainArgs); 6226return new CapturedParameterKey(ParameterKind.Explicit, GetSymbolDeclarationSyntax(parameter, cancellationToken), lambda);
6 references to CapturedParameterKey
Microsoft.CodeAnalysis.Features (6)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (6)
6202private CapturedParameterKey GetParameterKey(IParameterSymbol parameter, CancellationToken cancellationToken) 6230CapturedParameterKey parameterKey, 6233out CapturedParameterKey mappedParameterKey) 6308using var _2 = PooledDictionary<CapturedParameterKey, int>.GetInstance(out var oldParameterCaptures); 6341var newParameterKey = GetParameterKey(newParameterCapture, cancellationToken); 6342if (!TryMapParameter(newParameterKey, parameterMap?.Reverse, bodyMap.Reverse, out var oldParameterKey) ||