Hi again,
Doru, last week you wrote a small class definition for the MooseFinder.
| class | class := FAMIXClass new. class name: 'AClass'. class addToMethods: (FAMIXMethod new name: 'aMethod'; yourself). class addToMethods: (FAMIXMethod new name: 'anotherMethod'; yourself).
Remember? I guess this should be the FAMIX 2 version of these 5 lines of code:
| class | class := FAMIX2Class new. class setName: 'AClass'. class addToMethods: (FAMIX2Method new setName: 'aMethod'; yourself). class addToMethods: (FAMIX2Method new setName: 'anotherMethod'; yourself).
However it lamentably open debugger that cannot be closed. The image is unusable.
Alexandre