Autoload.st
changeset 9373 e312f2f2901c
parent 9218 0fcd32643a6f
child 9422 82a0ea18b63b
equal deleted inserted replaced
9372:3e8b8e54a66d 9373:e312f2f2901c
   537     ^ self doesNotUnderstand:(Message selector:#new: argument:arg)
   537     ^ self doesNotUnderstand:(Message selector:#new: argument:arg)
   538 
   538 
   539     "Modified: 26.5.1997 / 14:59:58 / cg"
   539     "Modified: 26.5.1997 / 14:59:58 / cg"
   540 !
   540 !
   541 
   541 
       
   542 privateClassesAt:aClassNameString
       
   543     "catch  - load the class and send it to the real one"
       
   544 
       
   545     self == Autoload ifTrue:[
       
   546         ^ super privateClassesAt:aClassNameString.
       
   547     ].
       
   548     ^ self doesNotUnderstand:(Message selector:#privateClassesAt: argument:aClassNameString)
       
   549 !
       
   550 
   542 readFrom:aStream 
   551 readFrom:aStream 
   543     "catch  - load the class and send it to the real one"
   552     "catch  - load the class and send it to the real one"
   544 
   553 
   545     ^ self doesNotUnderstand:(Message selector:#readFrom: argument:aStream)
   554     ^ self doesNotUnderstand:(Message selector:#readFrom: argument:aStream)
   546 
   555 
   856 ! !
   865 ! !
   857 
   866 
   858 !Autoload class methodsFor:'documentation'!
   867 !Autoload class methodsFor:'documentation'!
   859 
   868 
   860 version
   869 version
   861     ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.130 2006-03-06 08:50:06 cg Exp $'
   870     ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.131 2006-06-15 09:52:45 stefan Exp $'
   862 ! !
   871 ! !
   863 
   872 
   864 Autoload initialize!
   873 Autoload initialize!