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