@Override
 public void visit(final ObjectCreationExpr n, final A arg) {
   visitComment(n.getComment(), arg);
   if (n.getScope() != null) {
     n.getScope().accept(this, arg);
   }
   if (n.getTypeArguments() != null) {
     for (final Type t : n.getTypeArguments()) {
       t.accept(this, arg);
     }
   }
   n.getType().accept(this, arg);
   if (n.getArgs() != null) {
     for (final Expression e : n.getArgs()) {
       e.accept(this, arg);
     }
   }
   if (n.getAnonymousClassBody() != null) {
     for (final BodyDeclaration<?> member : n.getAnonymousClassBody()) {
       member.accept(this, arg);
     }
   }
 }