2 instantiations of SymbolResult
Microsoft.CodeAnalysis.Features (2)
FullyQualify\AbstractFullyQualifyService.cs (1)
178
.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)
120
ImmutableArray<
SymbolResult
> GetTypeSearchResults(
153
ImmutableArray<
SymbolResult
> GetNamespaceSearchResults(
189
ImmutableArray<
SymbolResult
> proposedContainers,
196
foreach (
var
symbolResult in proposedContainers)
293
private static IEnumerable<
SymbolResult
> GetContainers(
294
ImmutableArray<
SymbolResult
> symbols, Compilation compilation)
296
foreach (
var
symbolResult in symbols)
311
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)