public Node visit(SwitchEntryStmt _n, Object _arg) {
Expression label = cloneNodes(_n.getLabel(), _arg);
List<Statement> stmts = visit(_n.getStmts(), _arg);
Comment comment = cloneNodes(_n.getComment(), _arg);
SwitchEntryStmt r = new SwitchEntryStmt(
_n.getBeginLine(), _n.getBeginColumn(), _n.getEndLine(), _n.getEndColumn(),
label, stmts
);
r.setComment(comment);
return r;
}