NameSpace.st
changeset 6449 1c40d3785487
parent 6401 6df8939407df
child 6450 eede800067ad
equal deleted inserted replaced
6448:72e0a2994a9f 6449:1c40d3785487
   298                 private: private
   298                 private: private
   299                 instanceVariableNames: instVars
   299                 instanceVariableNames: instVars
   300                 classInstanceVariableNames: classInstVars
   300                 classInstanceVariableNames: classInstVars
   301                 imports: imports
   301                 imports: imports
   302                 category: category
   302                 category: category
       
   303 
       
   304     ^ self
       
   305         defineClass: name
       
   306         superclass: superclass
       
   307         indexedType: indexed
       
   308         private: private
       
   309         instanceVariableNames: instVars
       
   310         classInstanceVariableNames: classInstVars
       
   311         imports: imports
       
   312         category: category
       
   313         attributes: nil
       
   314 !
       
   315 
       
   316 defineClass: name
       
   317                 superclass: superclass
       
   318                 indexedType: indexed
       
   319                 private: private
       
   320                 instanceVariableNames: instVars
       
   321                 classInstanceVariableNames: classInstVars
       
   322                 imports: imports
       
   323                 category: category
   303                 attributes: annotations
   324                 attributes: annotations
   304 
   325 
   305     "VW5i compatibility class/namespace creation"
   326     "VW5i compatibility class/namespace creation"
   306 
   327 
   307     |variable words pointers|
   328     |variable words pointers|
   483 ! !
   504 ! !
   484 
   505 
   485 !NameSpace class methodsFor:'documentation'!
   506 !NameSpace class methodsFor:'documentation'!
   486 
   507 
   487 version
   508 version
   488     ^ '$Header: /cvs/stx/stx/libbasic/NameSpace.st,v 1.42 2002-02-18 16:22:24 cg Exp $'
   509     ^ '$Header: /cvs/stx/stx/libbasic/NameSpace.st,v 1.43 2002-03-07 07:52:06 cg Exp $'
   489 ! !
   510 ! !