7 references to SyntaxTree
Microsoft.CodeAnalysis.CodeStyle.Fixes (7)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Indentation\AbstractIndentationService.cs (1)
62
return new Indenter(this, document.
SyntaxTree
, document.Text, formattingRules, options, lineToBeIndented, smartTokenFormatter, cancellationToken);
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Utilities\ParsedDocument.cs (6)
22
/// 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
53
var root =
SyntaxTree
.WithChangedText(text).GetRoot(cancellationToken);
76
if (Text == oldDocument.Text ||
SyntaxTree
== oldDocument.
SyntaxTree
)
88
return
SyntaxTree
.GetChanges(oldDocument.
SyntaxTree
);