1 instantiation of BestSymbolInfo
Microsoft.CodeAnalysis.CSharp (1)
Binder\Binder_Symbols.cs (1)
2574var third = new BestSymbolInfo(location, i);
19 references to BestSymbolInfo
Microsoft.CodeAnalysis.CSharp (19)
Binder\Binder_Crefs.cs (2)
886BestSymbolInfo secondBest; 887BestSymbolInfo best = GetBestSymbolInfo(unwrappedSymbols, out secondBest);
Binder\Binder_Lookup.cs (2)
676BestSymbolInfo secondBest; 677BestSymbolInfo best = GetBestSymbolInfo(symbols, out secondBest);
Binder\Binder_Symbols.cs (15)
2030BestSymbolInfo secondBest; 2031BestSymbolInfo best = GetBestSymbolInfo(symbols, out secondBest); 2516public static bool Sort(ref BestSymbolInfo first, ref BestSymbolInfo second) 2520BestSymbolInfo temp = first; 2542private BestSymbolInfo GetBestSymbolInfo(ArrayBuilder<Symbol> symbols, out BestSymbolInfo secondBest) 2544BestSymbolInfo first = default(BestSymbolInfo); 2545BestSymbolInfo second = default(BestSymbolInfo); 2559if (BestSymbolInfo.IsSecondLocationBetter(location, current)) 2574var third = new BestSymbolInfo(location, i); 2575if (BestSymbolInfo.Sort(ref second, ref third)) 2577BestSymbolInfo.Sort(ref first, ref second);