Autoload.st
changeset 11058 66c655c1a7cb
parent 10928 4638bb4a03c7
child 11145 da935faeca94
equal deleted inserted replaced
11057:a87e5e1574ca 11058:66c655c1a7cb
   659      The subclass will have indexed variables if the receiving-class has."
   659      The subclass will have indexed variables if the receiving-class has."
   660 
   660 
   661     ^ self loadAndResendMessage
   661     ^ self loadAndResendMessage
   662 !
   662 !
   663 
   663 
       
   664 value
       
   665     "catch value - load the class and resend #value to the real one"
       
   666 
       
   667     ^ self doesNotUnderstand:(Message selector:#value)
       
   668 !
       
   669 
   664 variableByteSubclass:nameSymbol instanceVariableNames:instVarNameString classVariableNames:classVarString poolDictionaries:pool category:cat
   670 variableByteSubclass:nameSymbol instanceVariableNames:instVarNameString classVariableNames:classVarString poolDictionaries:pool category:cat
   665     "create a new class as a subclass of an existing class (the receiver) 
   671     "create a new class as a subclass of an existing class (the receiver) 
   666      in which the subclass has indexable byte-sized nonpointer variables"
   672      in which the subclass has indexable byte-sized nonpointer variables"
   667 
   673 
   668     ^ self loadAndResendMessage
   674     ^ self loadAndResendMessage
   915 ! !
   921 ! !
   916 
   922 
   917 !Autoload class methodsFor:'documentation'!
   923 !Autoload class methodsFor:'documentation'!
   918 
   924 
   919 version
   925 version
   920     ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.146 2008-04-01 16:17:14 fm Exp $'
   926     ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.147 2008-06-14 17:58:09 stefan Exp $'
   921 ! !
   927 ! !
   922 
   928 
   923 Autoload initialize!
   929 Autoload initialize!