Exemplo n.º 1
0
        protected override Expr VisitReturn(ExprReturn e)
        {
            var instReturn = this.il.Create(OpCodes.Ret);

            this.Emit(e, instReturn);
            return(e);
        }
Exemplo n.º 2
0
 protected virtual Expr VisitReturn (ExprReturn e)
 {
     return e;
 }