8 references to SyntaxTree
Microsoft.CodeAnalysis.CodeStyle.Fixes (7)
AbstractIndentationService.cs (1)
62
return new Indenter(this, document.
SyntaxTree
, formattingRules, options, lineToBeIndented, smartTokenFormatter, cancellationToken);
ParsedDocument.cs (6)
21
/// 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
52
var root =
SyntaxTree
.WithChangedText(text).GetRoot(cancellationToken);
75
if (Text == oldDocument.Text ||
SyntaxTree
== oldDocument.
SyntaxTree
)
89
return
SyntaxTree
.GetChanges(oldDocument.
SyntaxTree
);
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
ConvertNamespaceTransform.cs (1)
122
var syntaxTree = document.
SyntaxTree
;