2 writes to Symbol
Microsoft.CodeAnalysis.Workspaces (2)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\SymbolKey\SymbolKeyResolution.cs (2)
24
Symbol
= symbol;
31
Symbol
= null;
9 references to Symbol
Microsoft.CodeAnalysis.Workspaces (9)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\SymbolKey\SymbolKeyResolution.cs (3)
11
/// single <see cref="ISymbol"/> then that will be returned in <see cref="
Symbol
"/>. Otherwise, if the key resolves
15
/// If no symbol can be found <see cref="
Symbol
"/> will be <c>null</c> and <see cref="CandidateSymbols"/>
36
internal int SymbolCount =>
Symbol
!= null ? 1 : CandidateSymbols.Length;
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\SymbolKey\SymbolKeyResolution.Enumeration.cs (4)
33
if (_symbolKeyResolution.
Symbol
!= null)
35
return ++_index == 0 && _symbolKeyResolution.
Symbol
is TSymbol;
53
if (_symbolKeyResolution.
Symbol
!= null)
55
return (TSymbol)_symbolKeyResolution.
Symbol
;
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\SymbolKey\SymbolKeyResolutionExtensions.cs (2)
11
if (resolution.
Symbol
!= null)
13
return resolution.
Symbol
;