public ExprUnboundLambda CreateLambda() { CType type = GetTypes().GetAnonMethType(); ExprUnboundLambda rval = new ExprUnboundLambda(); rval.Kind = ExpressionKind.EK_UNBOUNDLAMBDA; rval.Type = type; rval.Flags = 0; Debug.Assert(rval != null); return(rval); }
protected virtual Expr VisitUNBOUNDLAMBDA(ExprUnboundLambda pExpr) { return(VisitEXPR(pExpr)); }
public ExprUnboundLambda CreateLambda() { ExprUnboundLambda rval = new ExprUnboundLambda(GetTypes().GetAnonMethType()); return(rval); }