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)
6184
if (colonToken != this.ColonToken || formatStringToken != this.
FormatStringToken
)
6194
public InterpolationFormatClauseSyntax WithColonToken(SyntaxToken colonToken) => Update(colonToken, this.
FormatStringToken
);
Binder\Binder_InterpolatedString.cs (1)
123
var text = interpolation.FormatClause.
FormatStringToken
.ValueText;
Microsoft.CodeAnalysis.CSharp.Features (3)
ConvertToRawString\ConvertInterpolatedStringToRawStringCodeRefactoringProvider.cs (3)
87
var characters = TryConvertToVirtualChars(interpolation.FormatClause.
FormatStringToken
);
463
var characters = TryConvertToVirtualChars(formatClause.
FormatStringToken
);
464
return formatClause.WithFormatStringToken(UpdateToken(formatClause.
FormatStringToken
, characters.CreateString()));