Re: [Pharo-dev] Copying/Duplicating a class also duplicates pool dictionaries

2016-09-06 Thread stepharo
What image version ? We had an issue for a similar case (the class /instance variable names were copied *and* renamed too) yes I faced this problem it was really strange :) 18957

Re: [Pharo-dev] Copying/Duplicating a class also duplicates pool dictionaries

2016-09-06 Thread Ben Coman
On Tue, Sep 6, 2016 at 9:49 PM, Nicolai Hess wrote: > > > 2016-09-06 15:39 GMT+02:00 Ben Coman : >> >> Just bumped into a curious thing. I went copy a class with a pool >> dictionary... >> >> FFIExternalStructure subclass: #CXString >>instanceVariableNames: '' >>classVariableNames: '' >>

Re: [Pharo-dev] Copying/Duplicating a class also duplicates pool dictionaries

2016-09-06 Thread Nicolai Hess
2016-09-06 15:39 GMT+02:00 Ben Coman : > Just bumped into a curious thing. I went copy a class with a pool > dictionary... > > FFIExternalStructure subclass: #CXString >instanceVariableNames: '' >classVariableNames: '' >poolDictionaries: 'CXStringFlag' >package: 'Libclang' > > and

[Pharo-dev] Copying/Duplicating a class also duplicates pool dictionaries

2016-09-06 Thread Ben Coman
Just bumped into a curious thing. I went copy a class with a pool dictionary... FFIExternalStructure subclass: #CXString instanceVariableNames: '' classVariableNames: '' poolDictionaries: 'CXStringFlag' package: 'Libclang' and it asked me for the new name, to which I dutifully entere