1 write to _symbolKeyResolution
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\SymbolKey\SymbolKeyResolution.Enumeration.cs (1)
27
_symbolKeyResolution
= symbolKeyResolution;
7 references to _symbolKeyResolution
Microsoft.CodeAnalysis.Workspaces (7)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\SymbolKey\SymbolKeyResolution.Enumeration.cs (7)
33
if (
_symbolKeyResolution
.Symbol != null)
35
return ++_index == 0 &&
_symbolKeyResolution
.Symbol is TSymbol;
38
while (++_index <
_symbolKeyResolution
.CandidateSymbols.Length)
40
if (
_symbolKeyResolution
.CandidateSymbols[_index] is TSymbol)
53
if (
_symbolKeyResolution
.Symbol != null)
55
return (TSymbol)
_symbolKeyResolution
.Symbol;
58
return (TSymbol)
_symbolKeyResolution
.CandidateSymbols[_index];