Ejemplo n.º 1
0
 public void visitKids(AST t) {
   for (AST kid : t.getKids()) {
     kid.accept(this);
   }
   return;
 }