doAction method

void doAction(
  1. Uint8List bytecode
)

DoAction(タグ12)。bytecode(Asm等で組み立てたActionRecord列。末尾にオペコード 0x00の終端バイトを含む想定)をそのままタグボディとして書き込む。

Implementation

void doAction(Uint8List bytecode) {
  _writeTag(TagCode.doAction, bytecode);
}