Runtime constructor

Runtime(
  1. ByteData _evc
)

Construct a runtime from EVC bytecode. When possible, use the Runtime.ofProgram constructor instead to reduce loading time.

Implementation

Runtime(this._evc)
    : id = _id++,
      _fromEvc = true;