ClassDefinitionChange.st
changeset 3810 542fa7a00a6f
parent 3808 c9927a70b702
child 3837 30ceae481017
equal deleted inserted replaced
3809:4e3d2e37a7d3 3810:542fa7a00a6f
   546         ] ifFalse:[
   546         ] ifFalse:[
   547             stream 
   547             stream 
   548                 tab;
   548                 tab;
   549                 nextPutAll:'category:';
   549                 nextPutAll:'category:';
   550                 nextPutAll:(category ? '') asString storeString
   550                 nextPutAll:(category ? '') asString storeString
       
   551         ].
       
   552 
       
   553         classInstanceVariableString notEmptyOrNil ifTrue:[
       
   554             stream nextPut:$.; cr;
       
   555                    nextPutAll:'"'; 
       
   556                    nextPutAll:classNameUsed; 
       
   557                    nextPutAll:' class instanceVariableNames: ';
       
   558                    nextPutAll:classInstanceVariableString storeString; 
       
   559                    nextPutAll:'"' 
   551         ].
   560         ].
   552       ]
   561       ]
   553 
   562 
   554     "Modified: / 13-06-2012 / 13:01:58 / cg"
   563     "Modified: / 13-06-2012 / 13:01:58 / cg"
   555     "Modified: / 13-11-2013 / 17:13:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   564     "Modified: / 13-11-2013 / 17:13:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   885 ! !
   894 ! !
   886 
   895 
   887 !ClassDefinitionChange class methodsFor:'documentation'!
   896 !ClassDefinitionChange class methodsFor:'documentation'!
   888 
   897 
   889 version
   898 version
   890     ^ '$Header: /cvs/stx/stx/libbasic3/ClassDefinitionChange.st,v 1.94 2015-02-25 21:34:01 cg Exp $'
   899     ^ '$Header: /cvs/stx/stx/libbasic3/ClassDefinitionChange.st,v 1.95 2015-02-26 01:07:10 cg Exp $'
   891 !
   900 !
   892 
   901 
   893 version_CVS
   902 version_CVS
   894     ^ '$Header: /cvs/stx/stx/libbasic3/ClassDefinitionChange.st,v 1.94 2015-02-25 21:34:01 cg Exp $'
   903     ^ '$Header: /cvs/stx/stx/libbasic3/ClassDefinitionChange.st,v 1.95 2015-02-26 01:07:10 cg Exp $'
   895 !
   904 !
   896 
   905 
   897 version_HG
   906 version_HG
   898 
   907 
   899     ^ '$Changeset: <not expanded> $'
   908     ^ '$Changeset: <not expanded> $'
   900 !
   909 !
   901 
   910 
   902 version_SVN
   911 version_SVN
   903     ^ '$Id: ClassDefinitionChange.st,v 1.94 2015-02-25 21:34:01 cg Exp $'
   912     ^ '$Id: ClassDefinitionChange.st,v 1.95 2015-02-26 01:07:10 cg Exp $'
   904 ! !
   913 ! !
   905 
   914