use of com.sun.source.util.JavacTask in project ceylon-compiler by ceylon.
the class DisjunctiveTypeWellFormednessTest method run.
void run(JavaCompiler tool, StandardJavaFileManager fm) throws Exception {
JavacTask ct = (JavacTask) tool.getTask(null, fm, diagChecker, null, null, Arrays.asList(source));
ct.analyze();
check();
}
Aggregations