3 instantiations of CapturedParameterKey
Microsoft.CodeAnalysis.Features (3)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (3)
6327return new CapturedParameterKey(ParameterKind.Value); 6332return new CapturedParameterKey(ParameterKind.TopLevelMainArgs); 6345return new CapturedParameterKey(ParameterKind.Explicit, GetSymbolDeclarationSyntax(parameter, cancellationToken), lambda);
6 references to CapturedParameterKey
Microsoft.CodeAnalysis.Features (6)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (6)
6321private CapturedParameterKey GetParameterKey(IParameterSymbol parameter, CancellationToken cancellationToken) 6349CapturedParameterKey parameterKey, 6352out CapturedParameterKey mappedParameterKey) 6427using var _2 = PooledDictionary<CapturedParameterKey, int>.GetInstance(out var oldParameterCaptures); 6460var newParameterKey = GetParameterKey(newParameterCapture, cancellationToken); 6461if (!TryMapParameter(newParameterKey, parameterMap?.Reverse, bodyMap.Reverse, out var oldParameterKey) ||