Stef and Hani,
please do not use below code fragment in the importer for each class you visit, this would perform O(n^2). Rather follow my suggestion to visit each literal node each method, which performs linear.
cheers, AA
On 22 Dec 2007, at 16:13 , Stéphane Ducasse wrote:
mc := MethodCollector new. bindingToSearch := OrderedCollection fullyQualifiedReference binding. filter := mc referencesTo: bindingToSearch. result := mc select: filter.