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