2 implementations of FormatToken
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CSharpSmartTokenFormatter.cs (1)
78public IList<TextChange> FormatToken(SyntaxToken token, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
VisualBasicSmartTokenFormatter.vb (1)
34Public Function FormatToken(token As SyntaxToken, cancellationToken As CancellationToken) As IList(Of TextChange) Implements ISmartTokenFormatter.FormatToken
3 references to FormatToken
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
VisualBasicSmartTokenFormatter.vb (1)
34Public Function FormatToken(token As SyntaxToken, cancellationToken As CancellationToken) As IList(Of TextChange) Implements ISmartTokenFormatter.FormatToken
Microsoft.CodeAnalysis.Workspaces (2)
AbstractIndentation.cs (1)
24/// will be asked to <see cref="ISmartTokenFormatter.FormatToken"/> the resultant
AbstractIndentation.Indenter.cs (1)
170var changes = SmartTokenFormatter.FormatToken(token, CancellationToken);