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

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


public class CeylonToolProvider {
   
    public static Compiler getCompiler(Backend backend){
        switch(backend){
        case Java:
            return new JavaCompilerImpl();
        case JavaScript:
            return new JavaScriptCompilerImpl();
        default:
            throw new RuntimeException("Compiler for backend not supported yet: "+backend);
        }
View Full Code Here

TOP

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

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.