6 references to ThisParameterSymbol
Microsoft.CodeAnalysis.CSharp (6)
Compilation\CSharpSemanticModel.cs (5)
3745
return new
ThisParameterSymbol
(containingMember as MethodSymbol, typeOfThis);
3759
thisParam = new
ThisParameterSymbol
(containingMember as MethodSymbol, containingType);
3766
thisParam = new
ThisParameterSymbol
(containingMember as MethodSymbol, containingType);
3783
thisParam = containingMember.EnclosingThisSymbol() ?? new
ThisParameterSymbol
(null, containingType);
3794
thisParam = new
ThisParameterSymbol
(containingMember as MethodSymbol, typeOfThis);
Symbols\Source\ThisParameterSymbol.cs (1)
134
internal ThisParameterSymbol(MethodSymbol forMethod) :
this
(forMethod, forMethod.ContainingType)