1 write to GetterMethod
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\SymbolTable.cs (1)
1249prop.GetterMethod = AddMethodToSymbolTable(methGet, aggregate, MethodKindEnum.PropAccessor);
10 references to GetterMethod
Microsoft.CSharp (10)
Microsoft\CSharp\RuntimeBinder\Errors\UserStringBuilder.cs (1)
183if (prop.GetterMethod == meth)
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (2)
931pmwtGet = prop.GetterMethod != null 932? new MethWithType(prop.GetterMethod, pwt.GetType())
Microsoft\CSharp\RuntimeBinder\Semantics\GroupToArgsBinder.cs (1)
587method = prop.GetterMethod ?? prop.SetterMethod;
Microsoft\CSharp\RuntimeBinder\Semantics\MemberLookup.cs (1)
473MethodSymbol meth1 = swt.Prop().GetterMethod;
Microsoft\CSharp\RuntimeBinder\SymbolTable.cs (5)
1253if (isIndexer || prop.GetterMethod.Params.Count == 0) 1255prop.GetterMethod.SetProperty(prop); 1260prop.GetterMethod.SetMethKind(MethodKindEnum.Actual); 1263if (prop.GetterMethod.GetAccess() > access) 1265access = prop.GetterMethod.GetAccess();