in src/main/java/net/hydromatic/linq4j/expressions/ConstructorDeclaration.java [83:107]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ConstructorDeclaration that = (ConstructorDeclaration) o;
if (modifier != that.modifier) {
return false;
}
if (!body.equals(that.body)) {
return false;
}
if (!parameters.equals(that.parameters)) {
return false;
}
if (!resultType.equals(that.resultType)) {
return false;
}
return true;
}