compileAsync method
Compile the given file with DDC and generate the output to outDir.
Implementation
Future compileAsync(dynamic files, Directory outDir,
{bool forceCompile: false, bool htmlReport: false}) {
return _ddc.runAsync(_args(files,
outDir: outDir, forceCompile: forceCompile, htmlReport: htmlReport));
}