1 implementation of GetRefKindOfArgument
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
591
public RefKind
GetRefKindOfArgument
(SyntaxNode node)
5 references to GetRefKindOfArgument
Microsoft.CodeAnalysis.Features (4)
ConvertToInterpolatedString\AbstractConvertPlaceholderToInterpolatedStringRefactoringProvider.cs (1)
78
if (syntaxFacts.
GetRefKindOfArgument
(argument) != RefKind.None)
GenerateType\AbstractGenerateTypeService.GenerateNamedType.cs (2)
150
var refKinds = argumentList.SelectAsArray(syntaxFacts.
GetRefKindOfArgument
);
201
var refKind = syntaxFacts.
GetRefKindOfArgument
(argumentList[i]);
src\Analyzers\Core\CodeFixes\AddParameter\AbstractAddParameterCodeFixProvider.cs (1)
407
var refKind = syntaxFacts.
GetRefKindOfArgument
(argument);
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\LightweightOverloadResolution.cs (1)
147
var argumentRefKind = this.SyntaxFacts.
GetRefKindOfArgument
(argument);