WeakIdentitySet.st
changeset 636 295267cdb5d5
parent 609 12be97f6d5a7
child 924 5745a1132511
equal deleted inserted replaced
635:86cbe76f5a20 636:295267cdb5d5
    36 documentation
    36 documentation
    37 "
    37 "
    38     this is a special class to support dependencies which do not
    38     this is a special class to support dependencies which do not
    39     prevent objects from dying.
    39     prevent objects from dying.
    40 "
    40 "
    41 !
       
    42 
       
    43 version
       
    44     ^ '$Header: /cvs/stx/stx/libbasic/WeakIdentitySet.st,v 1.11 1995-11-23 01:26:15 cg Exp $'
       
    45 ! !
    41 ! !
    46 
    42 
    47 !WeakIdentitySet class methodsFor:'instance creation'!
    43 !WeakIdentitySet class methodsFor:'instance creation'!
    48 
    44 
    49 new
    45 new
   149     w := WeakArray new:n.
   145     w := WeakArray new:n.
   150     w watcher:self.
   146     w watcher:self.
   151     ^ w
   147     ^ w
   152 ! !
   148 ! !
   153 
   149 
       
   150 !WeakIdentitySet class methodsFor:'documentation'!
       
   151 
       
   152 version
       
   153     ^ '$Header: /cvs/stx/stx/libbasic/WeakIdentitySet.st,v 1.12 1995-11-23 17:38:00 cg Exp $'
       
   154 ! !