280281282283284285286287288289
} } private static int getCeylonCodegenExceptionCount(JavaCompiler comp) { if (comp.log instanceof CeylonLog) { CeylonLog log = ((CeylonLog)comp.log); return log.getCeylonCodegenExceptionCount(); } return 0; }
288289290291292293294295296297
return 0; } private static int getCeylonCodegenErroneousCount(JavaCompiler comp) { if (comp.log instanceof CeylonLog) { CeylonLog log = ((CeylonLog)comp.log); return log.getCeylonCodegenErroneousCount(); } return 0; }
296297298299300301302303304305
return 0; } private static int getCeylonCodegenGarbageTreeCount(JavaCompiler comp) { if (comp.log instanceof CeylonLog) { CeylonLog log = ((CeylonLog)comp.log); return log.getCeylonCodegenGarbageTreeCount(); } return 0; }
310311312313314315316317318319
+ getCeylonCodegenGarbageTreeCount(comp); } private static int getNonCeylonErrorCount(JavaCompiler comp) { if (comp.log instanceof CeylonLog) { CeylonLog log = ((CeylonLog)comp.log); return log.getNonCeylonErrorCount(); } return 0; }
318319320321322323324325326327
return 0; } private static int getCeylonErrorCount(JavaCompiler comp) { if (comp.log instanceof CeylonLog) { CeylonLog log = ((CeylonLog)comp.log); return log.getCeylonErrorCount(); } return 0; }