/** {@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);
  }