1 instantiation of BestSymbolInfo
Microsoft.CodeAnalysis.CSharp (1)
Binder\Binder_Symbols.cs (1)
2461var third = new BestSymbolInfo(location, i);
19 references to BestSymbolInfo
Microsoft.CodeAnalysis.CSharp (19)
Binder\Binder_Crefs.cs (2)
687BestSymbolInfo secondBest; 688BestSymbolInfo best = GetBestSymbolInfo(unwrappedSymbols, out secondBest);
Binder\Binder_Lookup.cs (2)
624BestSymbolInfo secondBest; 625BestSymbolInfo best = GetBestSymbolInfo(symbols, out secondBest);
Binder\Binder_Symbols.cs (15)
1917BestSymbolInfo secondBest; 1918BestSymbolInfo best = GetBestSymbolInfo(symbols, out secondBest); 2403public static bool Sort(ref BestSymbolInfo first, ref BestSymbolInfo second) 2407BestSymbolInfo temp = first; 2429private BestSymbolInfo GetBestSymbolInfo(ArrayBuilder<Symbol> symbols, out BestSymbolInfo secondBest) 2431BestSymbolInfo first = default(BestSymbolInfo); 2432BestSymbolInfo second = default(BestSymbolInfo); 2446if (BestSymbolInfo.IsSecondLocationBetter(location, current)) 2461var third = new BestSymbolInfo(location, i); 2462if (BestSymbolInfo.Sort(ref second, ref third)) 2464BestSymbolInfo.Sort(ref first, ref second);