Example #1
0
  @Override
  public boolean equals(Object other) {
    if (other instanceof ASTClassType) {
      ASTClassType oc = (ASTClassType) other;
      return name.equals(oc.name); // NB. name only
    }

    return false;
  }