2 instantiations of SymbolResult
Microsoft.CodeAnalysis.Features (2)
FullyQualify\AbstractFullyQualifyService.cs (1)
177
.Select(n => new
SymbolResult
(n,
FullyQualify\AbstractFullyQualifyService.SymbolResult.cs (1)
44
=>
new
(other, Weight, Symbol);
15 references to SymbolResult
Microsoft.CodeAnalysis.Features (15)
FullyQualify\AbstractFullyQualifyService.cs (9)
119
ImmutableArray<
SymbolResult
> GetTypeSearchResults(
152
ImmutableArray<
SymbolResult
> GetNamespaceSearchResults(
187
ImmutableArray<
SymbolResult
> proposedContainers,
194
foreach (
var
symbolResult in proposedContainers)
291
private static IEnumerable<
SymbolResult
> GetContainers(
292
ImmutableArray<
SymbolResult
> symbols, Compilation compilation)
294
foreach (
var
symbolResult in symbols)
309
private static IEnumerable<
SymbolResult
> FilterAndSort(IEnumerable<
SymbolResult
> symbols)
FullyQualify\AbstractFullyQualifyService.SymbolResult.cs (6)
14
private readonly struct SymbolResult : IEquatable<
SymbolResult
>, IComparable<
SymbolResult
>
35
=> obj is
SymbolResult
result && Equals(result);
37
public bool Equals(
SymbolResult
other)
43
public
SymbolResult
WithSymbol(INamespaceOrTypeSymbol other)
46
public int CompareTo(
SymbolResult
other)