6 references to ThisParameterSymbol
Microsoft.CodeAnalysis.CSharp (6)
Compilation\CSharpSemanticModel.cs (5)
3747return new ThisParameterSymbol(containingMember as MethodSymbol, typeOfThis); 3761thisParam = new ThisParameterSymbol(containingMember as MethodSymbol, containingType); 3768thisParam = new ThisParameterSymbol(containingMember as MethodSymbol, containingType); 3785thisParam = containingMember.EnclosingThisSymbol() ?? new ThisParameterSymbol(null, containingType); 3796thisParam = new ThisParameterSymbol(containingMember as MethodSymbol, typeOfThis);
Symbols\Source\ThisParameterSymbol.cs (1)
134internal ThisParameterSymbol(MethodSymbol forMethod) : this(forMethod, forMethod.ContainingType)