I know this problem
annonymousClassCreator
^ String streamContents: [ :stream |
stream
nextPutAll: '(FFITypeArray ofType: #';
print: self objectClass type class;
nextPutAll: ' size: ';
print: self objectClass numberOfElements;
nextPutAll: ')' ]
is where it code goes wrong.
class is...a class.
change to
print: self objectClass type class displayString;
Juhuuu! it worked with Pharo 6.0 :)
Which means there is a problem with Pharo 7.0.
I will appreciate any help. thanks!