@Override public boolean equals(Object other) { if (other instanceof ASTClassType) { ASTClassType oc = (ASTClassType) other; return name.equals(oc.name); // NB. name only } return false; }
@Override public int hashCode() { return name.hashCode(); }