/** @apilevel low-level */ @SuppressWarnings({"unchecked", "cast"}) public EmptyStmt fullCopy() { EmptyStmt res = (EmptyStmt) copy(); for (int i = 0; i < getNumChildNoTransform(); i++) { ASTNode node = getChildNoTransform(i); if (node != null) node = node.fullCopy(); res.setChild(node, i); } return res; }
/** @apilevel internal */ @SuppressWarnings({"unchecked", "cast"}) public EmptyStmt copy() { try { EmptyStmt node = (EmptyStmt) clone(); if (children != null) node.children = (ASTNode[]) children.clone(); return node; } catch (CloneNotSupportedException e) { } System.err.println("Error: Could not clone node of type " + getClass().getName() + "!"); return null; }
/** @apilevel internal */ @SuppressWarnings({"unchecked", "cast"}) public EmptyStmt clone() throws CloneNotSupportedException { EmptyStmt node = (EmptyStmt) super.clone(); node.isDAafter_Variable_values = null; node.isDUafter_Variable_values = null; node.canCompleteNormally_computed = false; node.in$Circle(false); node.is$Final(false); return node; }