Package com.redhat.ceylon.compiler.typechecker.context

Examples of com.redhat.ceylon.compiler.typechecker.context.PhasedUnits


            getModelLoader().addModuleToClassPath(module, result);
    }
   
    @Override
    protected PhasedUnits createPhasedUnits() {
        PhasedUnits units = super.createPhasedUnits();
        String fileEncoding  = tool.getEncoding();
        if (fileEncoding == null) {
            fileEncoding = CeylonConfig.get(DefaultToolOptions.DEFAULTS_ENCODING);
        }
        if (fileEncoding != null) {
            units.setEncoding(fileEncoding);
        }
        return units;
    }
View Full Code Here

TOP

Related Classes of com.redhat.ceylon.compiler.typechecker.context.PhasedUnits

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.