Autoload.st
changeset 15056 7ee92e75b2c4
parent 15054 1667e3fe9e8b
child 15236 31a3ab65d988
child 18045 c0c600e0d3b3
equal deleted inserted replaced
15055:99961534feb1 15056:7ee92e75b2c4
   382                 Class classConventionViolationConfirmationQuerySignal answer:true
   382                 Class classConventionViolationConfirmationQuerySignal answer:true
   383                 do:[
   383                 do:[
   384                     |classFileName|
   384                     |classFileName|
   385 
   385 
   386                     classFileName := self classFilename.    
   386                     classFileName := self classFilename.    
   387                     (classFilename notNil and:[classFilename asFilename isAbsolute]) ifTrue:[
   387                     (classFileName notNil and:[classFileName asFilename isAbsolute]) ifTrue:[
   388                         "/ if filename is absolute, the autoload-class was created by an
   388                         "/ if filename is absolute, the autoload-class was created by an
   389                         "/ explicit install-as-autoloaded via the fileBrowser.
   389                         "/ explicit install-as-autoloaded via the fileBrowser.
   390                         Smalltalk fileIn:classFilename lazy:false silent:nil.
   390                         Smalltalk fileIn:classFileName lazy:false silent:nil.
   391                     ] ifFalse:[
   391                     ] ifFalse:[
   392                         (Smalltalk 
   392                         (Smalltalk 
   393                             fileInClass:myName
   393                             fileInClass:myName
   394                             package:packageID
   394                             package:packageID
   395                             initialize:false 
   395                             initialize:false 
   808 ! !
   808 ! !
   809 
   809 
   810 !Autoload class methodsFor:'documentation'!
   810 !Autoload class methodsFor:'documentation'!
   811 
   811 
   812 version
   812 version
   813     ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.163 2013-04-03 18:53:03 cg Exp $'
   813     ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.164 2013-04-03 19:57:42 cg Exp $'
   814 !
   814 !
   815 
   815 
   816 version_CVS
   816 version_CVS
   817     ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.163 2013-04-03 18:53:03 cg Exp $'
   817     ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.164 2013-04-03 19:57:42 cg Exp $'
   818 ! !
   818 ! !
   819 
   819 
   820 
   820 
   821 Autoload initialize!
   821 Autoload initialize!