/** Visit class 'VariableDeclaration' */
 public Object visit(VariableDeclaration host, Object data) {
   String x = host.getName() + ":" + host.getType().getFullName("::");
   if (host.getInitExpression() != null) x += " = " + host.getInitExpression().accept(this, data);
   return x;
 }