// Autogenerated AST node package org.python.pydev.parser.jython.ast; import org.python.pydev.parser.jython.SimpleNode; import java.util.Arrays; public final class SetComp extends exprType { public exprType elt; public comprehensionType[] generators; public SetComp(exprType elt, comprehensionType[] generators) { this.elt = elt; this.generators = generators; } public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((elt == null) ? 0 : elt.hashCode()); result = prime * result + Arrays.hashCode(generators); return result; } public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; SetComp other = (SetComp) obj; if (elt == null) { if (other.elt != null) return false; } else if (!elt.equals(other.elt)) return false; if (!Arrays.equals(generators, other.generators)) return false; return true; } public SetComp createCopy() { return createCopy(true); } public SetComp createCopy(boolean copyComments) { comprehensionType[] new0; if (this.generators != null) { new0 = new comprehensionType[this.generators.length]; for (int i = 0; i < this.generators.length; i++) { new0[i] = (comprehensionType) (this.generators[i] != null ? this.generators[i].createCopy(copyComments) : null); } } else { new0 = this.generators; } SetComp temp = new SetComp(elt != null ? (exprType) elt.createCopy(copyComments) : null, new0); temp.beginLine = this.beginLine; temp.beginColumn = this.beginColumn; if (this.specialsBefore != null && copyComments) { for (Object o : this.specialsBefore) { if (o instanceof commentType) { commentType commentType = (commentType) o; temp.getSpecialsBefore().add(commentType.createCopy(copyComments)); } } } if (this.specialsAfter != null && copyComments) { for (Object o : this.specialsAfter) { if (o instanceof commentType) { commentType commentType = (commentType) o; temp.getSpecialsAfter().add(commentType.createCopy(copyComments)); } } } return temp; } public String toString() { StringBuffer sb = new StringBuffer("SetComp["); sb.append("elt="); sb.append(dumpThis(this.elt)); sb.append(", "); sb.append("generators="); sb.append(dumpThis(this.generators)); sb.append("]"); return sb.toString(); } public Object accept(VisitorIF visitor) throws Exception { return visitor.visitSetComp(this); } public void traverse(VisitorIF visitor) throws Exception { if (elt != null) { elt.accept(visitor); } if (generators != null) { for (int i = 0; i < generators.length; i++) { if (generators[i] != null) { generators[i].accept(visitor); } } } } }