10 references to FormatStringToken
Microsoft.CodeAnalysis.CSharp (4)
Binder\Binder_InterpolatedString.cs (1)
123var text = interpolation.FormatClause.FormatStringToken.ValueText;
Syntax.xml.Main.Generated.cs (1)
1825=> node.Update(VisitToken(node.ColonToken), VisitToken(node.FormatStringToken));
Syntax.xml.Syntax.Generated.cs (2)
6139if (colonToken != this.ColonToken || formatStringToken != this.FormatStringToken) 6149public InterpolationFormatClauseSyntax WithColonToken(SyntaxToken colonToken) => Update(colonToken, this.FormatStringToken);
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
StringCopyPaste\StringCopyPasteData.cs (1)
164!TryGetNormalizedStringForSpan(virtualCharService, interpolation.FormatClause.FormatStringToken, selectionSpan, out formatClause))
Microsoft.CodeAnalysis.CSharp.Features (3)
ConvertToRawString\ConvertInterpolatedStringToRawStringCodeRefactoringProvider.cs (3)
87var characters = TryConvertToVirtualChars(interpolation.FormatClause.FormatStringToken); 465var characters = TryConvertToVirtualChars(formatClause.FormatStringToken); 466return formatClause.WithFormatStringToken(UpdateToken(formatClause.FormatStringToken, characters.CreateString()));
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (2)
Generated\Syntax.Test.xml.Generated.cs (2)
12360Assert.Equal(SyntaxKind.InterpolatedStringTextToken, node.FormatStringToken.Kind()); 12361var newNode = node.WithColonToken(node.ColonToken).WithFormatStringToken(node.FormatStringToken);