/** {@inheritDoc} */
  @Override
  public final boolean equals(Object other) {
    if ((other == null) || (getClass() != other.getClass())) {
      return false;
    }

    CstInvokeDynamic otherIndy = (CstInvokeDynamic) other;
    return super.equals(other) && bootstrapMethod.equals(otherIndy.bootstrapMethod);
  }
 /** {@inheritDoc} */
 @Override
 public final int hashCode() {
   return (super.hashCode() * 31) ^ bootstrapMethod.hashCode();
 }