Package com.cloudbees.groovy.cps.impl

Source Code of com.cloudbees.groovy.cps.impl.ReturnBlock

package com.cloudbees.groovy.cps.impl;

import com.cloudbees.groovy.cps.Block;
import com.cloudbees.groovy.cps.Continuation;
import com.cloudbees.groovy.cps.Env;
import com.cloudbees.groovy.cps.Next;

/**
* @author Kohsuke Kawaguchi
*/
public class ReturnBlock implements Block {
    private final Block exp;

    public ReturnBlock(Block exp) {
        this.exp = exp;
    }

    public Next eval(Env e, Continuation k) {
        return new Next(exp,e, e.getReturnAddress());
    }

    private static final long serialVersionUID = 1L;
}
TOP

Related Classes of com.cloudbees.groovy.cps.impl.ReturnBlock

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.