3 instantiations of CapturedParameterKey
Microsoft.CodeAnalysis.Features (3)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (3)
6450return new CapturedParameterKey(ParameterKind.Value); 6455return new CapturedParameterKey(ParameterKind.TopLevelMainArgs); 6468return new CapturedParameterKey(ParameterKind.Explicit, GetSymbolDeclarationSyntax(parameter, cancellationToken), lambda);
6 references to CapturedParameterKey
Microsoft.CodeAnalysis.Features (6)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (6)
6444private CapturedParameterKey GetParameterKey(IParameterSymbol parameter, CancellationToken cancellationToken) 6472CapturedParameterKey parameterKey, 6475out CapturedParameterKey mappedParameterKey) 6550using var _2 = PooledDictionary<CapturedParameterKey, int>.GetInstance(out var oldParameterCaptures); 6583var newParameterKey = GetParameterKey(newParameterCapture, cancellationToken); 6584if (!TryMapParameter(newParameterKey, parameterMap?.Reverse, bodyMap.Reverse, out var oldParameterKey) ||