Well the solution in my case was to create a map from visited types to visited members (http://tinyurl.com/poq5e2) the visitation logic uses this map in order to invoke the next visit (http://tinyurl.com/ pkugra).
This "pattern" enables visitors to be implemented in Clojure for pure Java based frameworks (like AST visitors). On May 5, 6:00 pm, Stuart Sierra <the.stuart.sie...@gmail.com> wrote: > On May 4, 11:52 pm, Alex Osborne <a...@meshy.org> wrote: > > > Thankfully, Mark managed to figure out a way of doing it with with gen- > > class by using an undocumented (?) feature where you can put types > > into the method names so as to pick the exact one you want to > > override: > > > (ns org.example.FancyInputStream > > (:gen-class :extends java.io.InputStream)) > > (defn -read-void [this] > > (int \a)) > > Related: You can also use the :exposes-methods argument to gen-class > to access superclass methods. > > -Stuart Sierra --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---