7 references to SyntaxTree
Microsoft.CodeAnalysis.CodeStyle.Fixes (7)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Indentation\AbstractIndentationService.cs (1)
59return new Indenter(this, document.SyntaxTree, document.Text, formattingRules, options, lineToBeIndented, smartTokenFormatter, cancellationToken);
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Utilities\ParsedDocument.cs (6)
18/// Used to front-load <see cref="SyntaxTree"/> parsing and <see cref="SourceText"/> retrieval to a caller that has knowledge of whether or not these operations 49var root = SyntaxTree.WithChangedText(text).GetRoot(cancellationToken); 72if (Text == oldDocument.Text || SyntaxTree == oldDocument.SyntaxTree) 84return SyntaxTree.GetChanges(oldDocument.SyntaxTree);