5 references to FindSourceDeclarationsAsync
Microsoft.CodeAnalysis.Workspaces.UnitTests (5)
FindAllDeclarationsTests.cs (5)
460
var declarations = await SymbolFinder.
FindSourceDeclarationsAsync
(solution, str => str.Contains("Test")).ConfigureAwait(false);
468
var declarations = await SymbolFinder.
FindSourceDeclarationsAsync
(solution, str => true).ConfigureAwait(false);
476
var declarations = await SymbolFinder.
FindSourceDeclarationsAsync
(solution, str => false).ConfigureAwait(false);
484
await SymbolFinder.
FindSourceDeclarationsAsync
((Solution)null, str => str.Contains("Test"));
492
await SymbolFinder.
FindSourceDeclarationsAsync
(solution, null);