compiled property

Uint8List get compiled

Returns the copied compiled bytes for the script.

Implementation

Uint8List get compiled => Uint8List.fromList(
  _compiledCache ??= Uint8List.fromList(
    ops.fold(<int>[], (prev, op) => prev + op.compiled),
  ),
);