On 30 Apr 2015, at 11:59, Guillermo Polito <guillermopolito@gmail.com> wrote:

(TextConverter withAllSubclasses gather: [ :each |
SystemNavigation new allReferencesTo: each binding ]) size

Thanks to first class variables, this can be writing at:

(TextConverter withAllSubclasses gather: [ :each | each binding usingMethods ]) size

#binding returns GlobalVariable that has an API��� isn���t that nice?

Marcus