4 references to FindTokenFromEnd
Microsoft.CodeAnalysis.Workspaces (4)
CodeCleanup\AbstractCodeCleanerService.cs (1)
368
endToken = root.
FindTokenFromEnd
(span.End, findInsideTrivia: true);
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Rules\BaseIndentationFormattingRule.cs (1)
153
token2 = root.
FindTokenFromEnd
(span.End);
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Indentation\AbstractIndentation.Indenter.cs (1)
229
var token = Root.
FindTokenFromEnd
(LineToBeIndented.Start);
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\CommonFormattingHelpers.cs (1)
363
var endToken = root.
FindTokenFromEnd
(span.End).GetNextToken();