private String safeVisit(VNode operand) {
   if (operand == null) {
     return "null";
   }
   return operand.visit(this);
 }