1 implementation of IsInInactiveRegion
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
1465
public bool
IsInInactiveRegion
(SyntaxTree syntaxTree, int position, CancellationToken cancellationToken)
3 references to IsInInactiveRegion
Microsoft.CodeAnalysis.Features (2)
Completion\Providers\AbstractSymbolCompletionProvider.cs (1)
442
return syntaxFacts.
IsInInactiveRegion
(syntaxContext.SyntaxTree, syntaxContext.Position, cancellationToken)
SignatureHelp\AbstractSignatureHelpProvider.cs (1)
312
if (!relatedDocument.GetRequiredLanguageService<ISyntaxFactsService>().
IsInInactiveRegion
(syntaxTree, position, cancellationToken))
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Indentation\AbstractIndentation.Indenter.cs (1)
79
_syntaxFacts.
IsInInactiveRegion
(this.Tree, LineToBeIndented.Start, this.CancellationToken))