8 references to ThisParameterSymbol
Microsoft.CodeAnalysis.CSharp (8)
Compilation\CSharpSemanticModel.cs (6)
3756
return new
ThisParameterSymbol
(containingMember as MethodSymbol, typeOfThis);
3769
thisParam = new
ThisParameterSymbol
(null, containingType);
3775
thisParam = new
ThisParameterSymbol
(containingMember as MethodSymbol, containingType);
3782
thisParam = new
ThisParameterSymbol
(containingMember as MethodSymbol, containingType);
3799
thisParam = containingMember.EnclosingThisSymbol() ?? new
ThisParameterSymbol
(null, containingType);
3810
thisParam = new
ThisParameterSymbol
(containingMember as MethodSymbol, typeOfThis);
Symbols\NativeIntegerTypeSymbol.cs (1)
391
? new
ThisParameterSymbol
(this, _container)
Symbols\Source\ThisParameterSymbol.cs (1)
139
internal ThisParameterSymbol(MethodSymbol forMethod) :
this
(forMethod, forMethod.ContainingType)