Autoload.st
changeset 8709 25088287bbd0
parent 8590 4a2b666c8ade
child 9218 0fcd32643a6f
equal deleted inserted replaced
8708:fd7eba3420e1 8709:25088287bbd0
   515     "catch error - load the class and resend #error to the real one"
   515     "catch error - load the class and resend #error to the real one"
   516 
   516 
   517     ^ self doesNotUnderstand:(Message selector:#error)
   517     ^ self doesNotUnderstand:(Message selector:#error)
   518 !
   518 !
   519 
   519 
       
   520 fromString:aString
       
   521     "catch  - load the class and send it to the real one"
       
   522 
       
   523     ^ self doesNotUnderstand:(Message selector:#fromString: argument:aString)
       
   524 !
       
   525 
   520 new
   526 new
   521     "catch new - load the class and resend #new to the real one"
   527     "catch new - load the class and resend #new to the real one"
   522 
   528 
   523     ^ self doesNotUnderstand:(Message selector:#new)
   529     ^ self doesNotUnderstand:(Message selector:#new)
   524 
   530 
   850 ! !
   856 ! !
   851 
   857 
   852 !Autoload class methodsFor:'documentation'!
   858 !Autoload class methodsFor:'documentation'!
   853 
   859 
   854 version
   860 version
   855     ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.128 2004-09-23 13:06:42 stefan Exp $'
   861     ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.129 2005-01-26 14:41:06 stefan Exp $'
   856 ! !
   862 ! !
   857 
   863 
   858 Autoload initialize!
   864 Autoload initialize!