1 implementation of IsVerbatimStringLiteral
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
1122
public bool
IsVerbatimStringLiteral
(SyntaxToken token)
6 references to IsVerbatimStringLiteral
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
Completion\CompletionServiceTests.cs (1)
135
if (syntaxFacts.IsStringLiteral(token) || syntaxFacts.
IsVerbatimStringLiteral
(token))
Microsoft.CodeAnalysis.Features (5)
Completion\Providers\AbstractInternalsVisibleToCompletionProvider.cs (1)
254
if (syntaxFacts.IsStringLiteral(token) || syntaxFacts.
IsVerbatimStringLiteral
(token))
ConvertToInterpolatedString\AbstractConvertConcatenationToInterpolatedStringRefactoringProvider.cs (2)
93
isVerbatimStringLiteral = syntaxFacts.
IsVerbatimStringLiteral
(firstStringToken);
98
if (isVerbatimStringLiteral != syntaxFacts.
IsVerbatimStringLiteral
(firstToken))
ConvertToInterpolatedString\ConvertRegularStringToInterpolatedStringRefactoringProvider.cs (1)
113
CreateInterpolatedString(document, literalExpression, syntaxFacts.
IsVerbatimStringLiteral
(token)))));
SpellCheck\AbstractSpellCheckSpanService.cs (1)
93
AddStringSpans(token, canContainEscapes: !_syntaxFacts.
IsVerbatimStringLiteral
(token));