1 implementation of IsVerbatimInterpolatedStringExpression
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
1462
public bool
IsVerbatimInterpolatedStringExpression
([NotNullWhen(true)] SyntaxNode? node)
2 references to IsVerbatimInterpolatedStringExpression
Microsoft.CodeAnalysis.Features (2)
ConvertToInterpolatedString\AbstractConvertConcatenationToInterpolatedStringRefactoringProvider.cs (1)
180
syntaxFacts.
IsVerbatimInterpolatedStringExpression
(piece) == isVerbatimStringLiteral)
SpellCheck\AbstractSpellCheckSpanService.cs (1)
104
AddStringSpans(token, canContainEscapes: !_syntaxFacts.
IsVerbatimInterpolatedStringExpression
(token.Parent.Parent));