本文整理汇总了C#中Microsoft.CodeAnalysis.Document.Select方法的典型用法代码示例。如果您正苦于以下问题:C# Document.Select方法的具体用法?C# Document.Select怎么用?C# Document.Select使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.CodeAnalysis.Document
的用法示例。
在下文中一共展示了Document.Select方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetSortedDiagnosticsFromDocuments
/// <summary>
/// 指定の<see cref="DiagnosticAnalyzer"/>でドキュメントを診断した結果を取得します。
/// </summary>
/// <param name="analyzer">テスト対象の<see cref="DiagnosticAnalyzer"/></param>
/// <param name="documents">解析対象のドキュメント一覧</param>
/// <returns>ソースコードの位置でソートされた診断結果の一覧</returns>
protected static Diagnostic[] GetSortedDiagnosticsFromDocuments(DiagnosticAnalyzer analyzer, Document[] documents)
{
return documents
.Select(document => document.Project)
.Distinct()
.SelectMany(project => project.GetCompilationAsync().Result.WithAnalyzers(ImmutableArray.Create(analyzer)).GetAnalyzerDiagnosticsAsync().Result)
.Where(diag =>
{
if (diag.Location == Location.None || diag.Location.IsInMetadata)
{
return true;
}
return documents
.Select(document => document.GetSyntaxTreeAsync().Result)
.Any(tree => tree == diag.Location.SourceTree);
})
.OrderBy(diag => diag.Location.SourceSpan.Start)
.ToArray();
}