Package org.destecs.script.ast.expressions.binop

Examples of org.destecs.script.ast.expressions.binop.AEqualBinop


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


   * Returns a deep clone of this {@link AEqualBinop} node.
   * @return a deep clone of this {@link AEqualBinop} node
   */
  public AEqualBinop clone()
  {
    return new AEqualBinop(
    );
  }
View Full Code Here

TOP

Related Classes of org.destecs.script.ast.expressions.binop.AEqualBinop

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.