6 references to ThisParameterSymbol
Microsoft.CodeAnalysis.CSharp (6)
Compilation\CSharpSemanticModel.cs (5)
3736
return new
ThisParameterSymbol
(containingMember as MethodSymbol, typeOfThis);
3750
thisParam = new
ThisParameterSymbol
(containingMember as MethodSymbol, containingType);
3757
thisParam = new
ThisParameterSymbol
(containingMember as MethodSymbol, containingType);
3774
thisParam = containingMember.EnclosingThisSymbol() ?? new
ThisParameterSymbol
(null, containingType);
3785
thisParam = new
ThisParameterSymbol
(containingMember as MethodSymbol, typeOfThis);
Symbols\Source\ThisParameterSymbol.cs (1)
129
internal ThisParameterSymbol(MethodSymbol forMethod) :
this
(forMethod, forMethod.ContainingType)