Compiler constructor

const Compiler(
  1. CompilerFlags _flags,
  2. Future<String> _build(
    1. LibraryReader,
    2. BuildStep,
    3. CompilerFlags
    )
)

Create a new Compiler instance that uses the provided flag and builder.

Implementation

const Compiler(this._flags, this._build);