use of org.eclipse.ceylon.langtools.tools.javac.util.Options in project ceylon by eclipse.
the class CeyloncCompilerDelegate method getStatusPrinter.
private StatusPrinter getStatusPrinter() {
Options options = Options.instance(context);
boolean isProgressPrinted = options.get(Option.CEYLONPROGRESS) != null && StatusPrinter.canPrint();
if (isProgressPrinted) {
return LanguageCompiler.getStatusPrinterInstance(context);
} else {
return null;
}
}
Aggregations