List<AnnotationExpr> annotations = visit(_n.getAnnotations(), _arg);
Type type_ = cloneNodes(_n.getType(), _arg);
List<VariableDeclarator> vars = visit(_n.getVars(), _arg);
Comment comment = cloneNodes(_n.getComment(), _arg);
VariableDeclarationExpr r = new VariableDeclarationExpr(
_n.getBeginLine(), _n.getBeginColumn(), _n.getEndLine(), _n.getEndColumn(),
_n.getModifiers(), annotations, type_, vars
);
r.setComment(comment);
return r;
}