3 instantiations of CapturedParameterKey
Microsoft.CodeAnalysis.Features (3)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (3)
6445return new CapturedParameterKey(ParameterKind.Value); 6450return new CapturedParameterKey(ParameterKind.TopLevelMainArgs); 6463return new CapturedParameterKey(ParameterKind.Explicit, GetSymbolDeclarationSyntax(parameter, cancellationToken), lambda);
6 references to CapturedParameterKey
Microsoft.CodeAnalysis.Features (6)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (6)
6439private CapturedParameterKey GetParameterKey(IParameterSymbol parameter, CancellationToken cancellationToken) 6467CapturedParameterKey parameterKey, 6470out CapturedParameterKey mappedParameterKey) 6545using var _2 = PooledDictionary<CapturedParameterKey, int>.GetInstance(out var oldParameterCaptures); 6578var newParameterKey = GetParameterKey(newParameterCapture, cancellationToken); 6579if (!TryMapParameter(newParameterKey, parameterMap?.Reverse, bodyMap.Reverse, out var oldParameterKey) ||