Package org.destecs.script.ast.statement

Examples of org.destecs.script.ast.statement.AAssignStm


   * @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);
View Full Code Here


   * Returns a deep clone of this {@link AAssignStm} node.
   * @return a deep clone of this {@link AAssignStm} node
   */
  public AAssignStm clone()
  {
    return new AAssignStm(
      cloneNode(_domain),
      _name,
      cloneNode(_value)
    );
  }
View Full Code Here

TOP

Related Classes of org.destecs.script.ast.statement.AAssignStm

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.