7 references to IsParameterModifierContext
Microsoft.CodeAnalysis.CSharp.Features (5)
Completion\KeywordRecommenders\InKeywordRecommender.cs (1)
31
if (context.SyntaxTree.
IsParameterModifierContext
(
Completion\KeywordRecommenders\OutKeywordRecommender.cs (1)
27
return context.SyntaxTree.
IsParameterModifierContext
(
Completion\KeywordRecommenders\RefKeywordRecommender.cs (1)
118
if (context.SyntaxTree.
IsParameterModifierContext
(
Completion\KeywordRecommenders\ScopedKeywordRecommender.cs (1)
17
syntaxTree.
IsParameterModifierContext
(position, context.LeftToken, includeOperators: true, out _, out _) ||
Completion\KeywordRecommenders\ThisKeywordRecommender.cs (1)
59
if (context.SyntaxTree.
IsParameterModifierContext
(
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Extensions\ContextQuery\SyntaxTreeExtensions.cs (2)
1143
if (syntaxTree.
IsParameterModifierContext
(position, tokenOnLeftOfPosition, includeOperators: false, out _, out var previousModifier) &&
1198
if (syntaxTree.
IsParameterModifierContext
(position, tokenOnLeftOfPosition, includeOperators: true, out _, out _))