3 instantiations of CapturedParameterKey
Microsoft.CodeAnalysis.Features (3)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (3)
6394return new CapturedParameterKey(ParameterKind.Value); 6399return new CapturedParameterKey(ParameterKind.TopLevelMainArgs); 6412return new CapturedParameterKey(ParameterKind.Explicit, GetSymbolDeclarationSyntax(parameter, cancellationToken), lambda);
6 references to CapturedParameterKey
Microsoft.CodeAnalysis.Features (6)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (6)
6388private CapturedParameterKey GetParameterKey(IParameterSymbol parameter, CancellationToken cancellationToken) 6416CapturedParameterKey parameterKey, 6419out CapturedParameterKey mappedParameterKey) 6494using var _2 = PooledDictionary<CapturedParameterKey, int>.GetInstance(out var oldParameterCaptures); 6527var newParameterKey = GetParameterKey(newParameterCapture, cancellationToken); 6528if (!TryMapParameter(newParameterKey, parameterMap?.Reverse, bodyMap.Reverse, out var oldParameterKey) ||