public SyntaxNode GetFormattedRoot(CancellationToken cancellationToken) =>
 _lazyNode.GetValue(cancellationToken);
 public IList <TextChange> GetTextChanges(CancellationToken cancellationToken) =>
 _lazyTextChanges.GetValue(cancellationToken);
 public IList <TextChange> GetTextChanges(CancellationToken cancellationToken)
 {
     return(_lazyChanges.GetValue(cancellationToken));
 }
 public SyntaxNode GetFormattedRoot(CancellationToken cancellationToken)
 {
     return(_lazyNode.GetValue(cancellationToken));
 }
Beispiel #5
0
 /// <summary>
 /// Returns all the projects for the solution in a topologically sorted order with respect
 /// to their dependencies. That is, projects that depend on other projects will always show
 /// up later than them in this stream.
 /// </summary>
 public IEnumerable <ProjectId> GetTopologicallySortedProjects(CancellationToken cancellationToken = default(CancellationToken))
 {
     return(topologicallySortedProjects.GetValue(cancellationToken));
 }