4 references to ParameterKind
Microsoft.CodeAnalysis.Features (4)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (4)
6208
return new CapturedParameterKey(
ParameterKind
.Value);
6213
return new CapturedParameterKey(
ParameterKind
.TopLevelMainArgs);
6226
return new CapturedParameterKey(
ParameterKind
.Explicit, GetSymbolDeclarationSyntax(parameter, cancellationToken), lambda);
6269
private readonly record struct CapturedParameterKey(
ParameterKind
Kind, SyntaxNode? Syntax = null, SyntaxNode? ContainingLambda = null);