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