9 references to ThisParameterSymbol
Microsoft.CodeAnalysis.CSharp (8)
Compilation\CSharpSemanticModel.cs (6)
3751
return new
ThisParameterSymbol
(containingMember as MethodSymbol, typeOfThis);
3764
thisParam = new
ThisParameterSymbol
(null, containingType);
3770
thisParam = new
ThisParameterSymbol
(containingMember as MethodSymbol, containingType);
3777
thisParam = new
ThisParameterSymbol
(containingMember as MethodSymbol, containingType);
3794
thisParam = containingMember.EnclosingThisSymbol() ?? new
ThisParameterSymbol
(null, containingType);
3805
thisParam = new
ThisParameterSymbol
(containingMember as MethodSymbol, typeOfThis);
Symbols\NativeIntegerTypeSymbol.cs (1)
380
? new
ThisParameterSymbol
(this, _container)
Symbols\Source\ThisParameterSymbol.cs (1)
139
internal ThisParameterSymbol(MethodSymbol forMethod) :
this
(forMethod, forMethod.ContainingType)
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (1)
Semantics\RefFieldTests.cs (1)
11632
var thisParameter = new
ThisParameterSymbol
(forMethod: null, type); // "this" parameter for property for instance.