7 references to FormatStringToken
Microsoft.CodeAnalysis.CSharp (4)
_generated\0\Syntax.xml.Main.Generated.cs (1)
1837=> node.Update(VisitToken(node.ColonToken), VisitToken(node.FormatStringToken));
_generated\2\Syntax.xml.Syntax.Generated.cs (2)
6184if (colonToken != this.ColonToken || formatStringToken != this.FormatStringToken) 6194public InterpolationFormatClauseSyntax WithColonToken(SyntaxToken colonToken) => Update(colonToken, this.FormatStringToken);
Binder\Binder_InterpolatedString.cs (1)
123var text = interpolation.FormatClause.FormatStringToken.ValueText;
Microsoft.CodeAnalysis.CSharp.Features (3)
ConvertToRawString\ConvertInterpolatedStringToRawStringCodeRefactoringProvider.cs (3)
87var characters = TryConvertToVirtualChars(interpolation.FormatClause.FormatStringToken); 463var characters = TryConvertToVirtualChars(formatClause.FormatStringToken); 464return formatClause.WithFormatStringToken(UpdateToken(formatClause.FormatStringToken, characters.CreateString()));