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