1 instantiation of BestSymbolInfo
Microsoft.CodeAnalysis.CSharp (1)
Binder\Binder_Symbols.cs (1)
2554
var third = new
BestSymbolInfo
(location, i);
19 references to BestSymbolInfo
Microsoft.CodeAnalysis.CSharp (19)
Binder\Binder_Crefs.cs (2)
870
BestSymbolInfo
secondBest;
871
BestSymbolInfo
best = GetBestSymbolInfo(unwrappedSymbols, out secondBest);
Binder\Binder_Lookup.cs (2)
699
BestSymbolInfo
secondBest;
700
BestSymbolInfo
best = GetBestSymbolInfo(symbols, out secondBest);
Binder\Binder_Symbols.cs (15)
2010
BestSymbolInfo
secondBest;
2011
BestSymbolInfo
best = GetBestSymbolInfo(symbols, out secondBest);
2496
public static bool Sort(ref
BestSymbolInfo
first, ref
BestSymbolInfo
second)
2500
BestSymbolInfo
temp = first;
2522
private
BestSymbolInfo
GetBestSymbolInfo(ArrayBuilder<Symbol> symbols, out
BestSymbolInfo
secondBest)
2524
BestSymbolInfo
first = default(
BestSymbolInfo
);
2525
BestSymbolInfo
second = default(
BestSymbolInfo
);
2539
if (
BestSymbolInfo
.IsSecondLocationBetter(location, current))
2554
var
third = new BestSymbolInfo(location, i);
2555
if (
BestSymbolInfo
.Sort(ref second, ref third))
2557
BestSymbolInfo
.Sort(ref first, ref second);