1 implementation of IsEntirelyWithinStringOrCharOrNumericLiteral
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
128public bool IsEntirelyWithinStringOrCharOrNumericLiteral([NotNullWhen(true)] SyntaxTree? syntaxTree, int position, CancellationToken cancellationToken)
3 references to IsEntirelyWithinStringOrCharOrNumericLiteral
Microsoft.CodeAnalysis.Features (3)
Completion\Providers\AbstractInternalsVisibleToCompletionProvider.cs (1)
62if (syntaxFactsService.IsEntirelyWithinStringOrCharOrNumericLiteral(syntaxTree, context.Position, cancellationToken))
DocumentationComments\AbstractDocumentationCommentSnippetService.cs (1)
374if (syntaxFacts.IsEntirelyWithinStringOrCharOrNumericLiteral(syntaxTree, position, cancellationToken))
SignatureHelp\CommonSignatureHelpUtilities.cs (1)
132syntaxFacts.IsEntirelyWithinStringOrCharOrNumericLiteral(root.SyntaxTree, position, cancellationToken))