smalltalk.rc
changeset 489 b055480c567d
parent 488 521e2d58f050
child 491 71ecb2b5851a
equal deleted inserted replaced
488:521e2d58f050 489:b055480c567d
   181 	 ].  
   181 	 ].  
   182     ].
   182     ].
   183     openDisplay := true.
   183     openDisplay := true.
   184 ].
   184 ].
   185 
   185 
   186 "/
       
   187 "/ the following are required (either compiled or interpreted) ...
       
   188 "/ required classes should be in libbasic
       
   189 "/
       
   190 #( 
       
   191      "/ ObsoleteObject
       
   192      "/ BinaryIOManager BinaryInputManager BinaryOutputManager BinaryObjectStorage
       
   193      StringCollection CachingRegistry
       
   194 ) do:[:s |
       
   195     (Smalltalk at:s) isNil ifTrue:[
       
   196 	('smalltalk.rc [info]: loading ' , s , ' ...') infoPrintCR.
       
   197 	Smalltalk fileInClass:s initialize:true lazy:false silent:true
       
   198     ]
       
   199 ].
       
   200 
   186 
   201 "/ Install patches, once everything has been loaded.
   187 "/ Install patches, once everything has been loaded.
   202 "/ System methods may be overwritten by patches.
   188 "/ System methods may be overwritten by patches.
   203 
   189 
   204 prevCatchSetting := Class catchMethodRedefinitions.
   190 prevCatchSetting := Class catchMethodRedefinitions.