예제 #1
0
 public static void ReportUnprocessed(SyntaxTree tree, TextSpan?filterSpanWithinTree, DiagnosticBag diagnostics, CancellationToken cancellationToken)
 {
     if (tree.ReportDocumentationCommentDiagnostics())
     {
         UnprocessedDocumentationCommentFinder finder = new UnprocessedDocumentationCommentFinder(diagnostics, filterSpanWithinTree, cancellationToken);
         finder.Visit(tree.GetRoot(cancellationToken));
     }
 }
 public static void ReportUnprocessed(SyntaxTree tree, TextSpan? filterSpanWithinTree, DiagnosticBag diagnostics, CancellationToken cancellationToken)
 {
     if (tree.ReportDocumentationCommentDiagnostics())
     {
         UnprocessedDocumentationCommentFinder finder = new UnprocessedDocumentationCommentFinder(diagnostics, filterSpanWithinTree, cancellationToken);
         finder.Visit(tree.GetRoot());
     }
 }