public UserOperatorCall (MethodGroupExpr mg, Arguments args, ExpressionTreeExpression expr_tree, Location loc) { this.mg = mg; this.arguments = args; this.expr_tree = expr_tree; type = TypeManager.TypeToCoreType (((MethodInfo) mg).ReturnType); eclass = ExprClass.Value; this.loc = loc; }
public ConditionalLogicalOperator (MethodGroupExpr oper_method, Arguments arguments, ExpressionTreeExpression expr_tree, bool is_and, Location loc) : base (oper_method, arguments, expr_tree, loc) { this.is_and = is_and; }