Package com.redhat.ceylon.compiler.js

Examples of com.redhat.ceylon.compiler.js.CeylonRunJsTool


    private CeylonRunJsTool tool;
    private String moduleSpec;

    public JavaScriptRunnerImpl(final RunnerOptions options, String module, String version) {
        tool = new CeylonRunJsTool() {
            @Override
            protected void customizeDependencies(List<File> localRepos, RepositoryManager repoman) throws IOException {
                for (Map.Entry<String,String> extraModule : options.getExtraModules().entrySet()) {
                    String modName = extraModule.getKey();
                    String modVersion = extraModule.getValue();
View Full Code Here

TOP

Related Classes of com.redhat.ceylon.compiler.js.CeylonRunJsTool

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.