compileAsync method

Future compileAsync(
  1. dynamic files,
  2. Directory outDir, {
  3. bool forceCompile = false,
  4. bool htmlReport = false,
})

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));
}