public VisitorExpression(final VisitorType t, final Block body) {
   if (t != null) t.setParent(this);
   if (body != null) body.setParent(this);
   this.t = t;
   this.body = body;
 }