@Override
 public void visit(final ExplicitConstructorInvocationStmt n, final A arg) {
   visitComment(n.getComment(), arg);
   if (!n.isThis() && n.getExpr() != null) {
     n.getExpr().accept(this, arg);
   }
   if (n.getTypeArguments() != null) {
     for (final Type t : n.getTypeArguments()) {
       t.accept(this, arg);
     }
   }
   if (n.getArgs() != null) {
     for (final Expression e : n.getArgs()) {
       e.accept(this, arg);
     }
   }
 }