8 references to SyntaxTree
Microsoft.CodeAnalysis.CodeStyle.Fixes (7)
AbstractIndentationService.cs (1)
62return 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 52var root = SyntaxTree.WithChangedText(text).GetRoot(cancellationToken); 75if (Text == oldDocument.Text || SyntaxTree == oldDocument.SyntaxTree) 89return SyntaxTree.GetChanges(oldDocument.SyntaxTree);
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
ConvertNamespaceTransform.cs (1)
122var syntaxTree = document.SyntaxTree;