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