@Override
public Node visit(LabeledStmt _n, Object _arg) {
Statement stmt = cloneNodes(_n.getStmt(), _arg);
Comment comment = cloneNodes(_n.getComment(), _arg);
LabeledStmt r = new LabeledStmt(
_n.getBeginLine(), _n.getBeginColumn(), _n.getEndLine(), _n.getEndColumn(),
_n.getLabel(), stmt
);
r.setComment(comment);
return r;
}