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