'From Squeak3.7beta of ''1 April 2004'' [latest update: #5905] on 20 May 2004 at 11:21:01 am'! "Change Set: KCPFIX initializenew: Date: 20 May 2004 Author: stˇphane ducasse make sure that new: also invoke initialize. Note that for speed gain we could in the future shortcut this call on String, Array, ByteArray...."! !Behavior methodsFor: 'instance creation' stamp: 'sd 5/20/2004 11:20'! new: sizeRequested "Answer an initialized instance of this class with the number of indexable variables specified by the argument, sizeRequested." ^ (self basicNew: sizeRequested) initialize ! !