Package com.redhat.ceylon.compiler.java.runtime.tools.impl

Examples of com.redhat.ceylon.compiler.java.runtime.tools.impl.JavaRunnerImpl


    public static Runner getRunner(Backend backend, RunnerOptions options, String module, String version) {
        switch(backend){
        case JavaScript:
            return new JavaScriptRunnerImpl(options, module, version);
        case Java:
            return new JavaRunnerImpl(options, module, version);
        default:
            throw new RuntimeException("Runner for backend not supported yet: "+backend);
        }
    }
View Full Code Here

TOP

Related Classes of com.redhat.ceylon.compiler.java.runtime.tools.impl.JavaRunnerImpl

Copyright © 2018 www.massapicom. 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.