void callback_heap::store_callback_operand(code_block* stub, cell index, cell value) { callback_operand(stub, index).store_value(value); }
void callback_heap::store_callback_operand(code_block* stub, cell index, cell value) { instruction_operand op = callback_operand(stub, index); op.store_value(value); }
void callback_heap::store_callback_operand(code_block* stub, cell index) { parent->store_external_address(callback_operand(stub, index)); }