compile method

void compile(
  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

void compile(dynamic files, Directory outDir,
    {bool forceCompile = false, bool htmlReport = false}) {
  _ddc.run(_args(files,
      outDir: outDir, forceCompile: forceCompile, htmlReport: htmlReport));
}