2 writes to isStatic
Microsoft.CSharp (2)
Microsoft\CSharp\RuntimeBinder\SymbolTable.cs (2)
1251prop.isStatic = property.GetGetMethod(true) != null ? property.GetGetMethod(true).IsStatic : property.GetSetMethod(true).IsStatic; 1430methodSymbol.isStatic = member.IsStatic;
5 references to isStatic
Microsoft.CSharp (5)
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (1)
1040return !meth.isStatic;
Microsoft\CSharp\RuntimeBinder\Semantics\PredefinedMembers.cs (1)
371methsym.isStatic == isStatic &&
Microsoft\CSharp\RuntimeBinder\Semantics\Symbols\Symbol.cs (1)
146return methProp.isStatic;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (2)
275if (expr.MethWithInst.Meth().isStatic || expr.MemberGroup.OptionalObject == null) 316if (expr.PropWithTypeSlot.Prop().isStatic || expr.MemberGroup.OptionalObject == null)