public void accept(ISQLVisitor visitor) {
   try {
     visitor.visit(this);
   } catch (Exception e) {
     throw org.whole.lang.exceptions.IWholeRuntimeException.asWholeException(
         e, this, visitor.getBindings());
   }
 }
Exemplo n.º 2
0
 public void accept(ISQLVisitor visitor) {
   if (visitor.visitAdapter(this)) visitor.visit(this);
 }