1 write to GetterMethod
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\SymbolTable.cs (1)
1274prop.GetterMethod = AddMethodToSymbolTable(methGet, aggregate, MethodKindEnum.PropAccessor);
10 references to GetterMethod
Microsoft.CSharp (10)
Microsoft\CSharp\RuntimeBinder\Errors\UserStringBuilder.cs (1)
189if (prop.GetterMethod == meth)
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (2)
953pmwtGet = prop.GetterMethod != null 954? new MethWithType(prop.GetterMethod, pwt.GetType())
Microsoft\CSharp\RuntimeBinder\Semantics\GroupToArgsBinder.cs (1)
588method = prop.GetterMethod ?? prop.SetterMethod;
Microsoft\CSharp\RuntimeBinder\Semantics\MemberLookup.cs (1)
474MethodSymbol meth1 = swt.Prop().GetterMethod;
Microsoft\CSharp\RuntimeBinder\SymbolTable.cs (5)
1278if (isIndexer || prop.GetterMethod.Params.Count == 0) 1280prop.GetterMethod.SetProperty(prop); 1285prop.GetterMethod.SetMethKind(MethodKindEnum.Actual); 1288if (prop.GetterMethod.GetAccess() > access) 1290access = prop.GetterMethod.GetAccess();