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