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