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