/** {@inheritDoc} */
  @Override
  protected void writeTo0(DexFile file, AnnotatedOutput out) {
    if (out.annotates()) {
      /*
       * Re-run the encoder to generate the annotations,
       * but write the bits from the original encode
       */

      out.annotate(offsetString() + " debug info");
      encode(file, null, null, out, true);
    }

    out.write(encoded);
  }