1 instantiation of BestSymbolInfo
Microsoft.CodeAnalysis.CSharp (1)
Binder\Binder_Symbols.cs (1)
2514
var third = new
BestSymbolInfo
(location, i);
19 references to BestSymbolInfo
Microsoft.CodeAnalysis.CSharp (19)
Binder\Binder_Crefs.cs (2)
687
BestSymbolInfo
secondBest;
688
BestSymbolInfo
best = GetBestSymbolInfo(unwrappedSymbols, out secondBest);
Binder\Binder_Lookup.cs (2)
697
BestSymbolInfo
secondBest;
698
BestSymbolInfo
best = GetBestSymbolInfo(symbols, out secondBest);
Binder\Binder_Symbols.cs (15)
1970
BestSymbolInfo
secondBest;
1971
BestSymbolInfo
best = GetBestSymbolInfo(symbols, out secondBest);
2456
public static bool Sort(ref
BestSymbolInfo
first, ref
BestSymbolInfo
second)
2460
BestSymbolInfo
temp = first;
2482
private
BestSymbolInfo
GetBestSymbolInfo(ArrayBuilder<Symbol> symbols, out
BestSymbolInfo
secondBest)
2484
BestSymbolInfo
first = default(
BestSymbolInfo
);
2485
BestSymbolInfo
second = default(
BestSymbolInfo
);
2499
if (
BestSymbolInfo
.IsSecondLocationBetter(location, current))
2514
var
third = new BestSymbolInfo(location, i);
2515
if (
BestSymbolInfo
.Sort(ref second, ref third))
2517
BestSymbolInfo
.Sort(ref first, ref second);