1 write to Symbol
Microsoft.CodeAnalysis.CSharp (1)
Binder\SingleLookupResult.cs (1)
33
this.
Symbol
= symbol;
12 references to Symbol
Microsoft.CodeAnalysis.CSharp (12)
Binder\Binder_Crefs.cs (2)
344
Debug.Assert(result.
Symbol
is not null);
346
sortedSymbolsBuilder.Add(result.
Symbol
);
Binder\Binder_Expressions.cs (2)
10924
var extensionMember = singleLookupResult.
Symbol
;
11138
var extensionMember = singleLookupResult.
Symbol
;
Binder\Binder_Lookup.cs (1)
216
Debug.Assert(resultOfThisMember.
Symbol
is not null);
Binder\LookupResult.cs (4)
220
_symbolList.Add(other.
Symbol
);
296
if (isNonGenericVersusGeneric(result.
Symbol
, this.SingleSymbolOrDefault))
303
if (isNonGenericVersusGeneric(this.SingleSymbolOrDefault, result.
Symbol
))
315
_symbolList.AddIfNotNull(result.
Symbol
);
Compilation\CSharpSemanticModel.cs (3)
4643
if (singleLookupResult.
Symbol
is not (MethodSymbol or PropertySymbol))
4711
if (singleResult.
Symbol
is null)
4716
Symbol member = singleResult.
Symbol
;