* @param oldToNewMap the map filled with the old node-new node relation
* @return a deep clone of this {@link AEqualBinop} node
*/
public AEqualBinop clone(Map<INode,INode> oldToNewMap)
{
AEqualBinop node = new AEqualBinop(
);
oldToNewMap.put(this, node);
return node;
}