SharedPool.st
changeset 12220 c26b8b402a71
parent 12169 8fcbd9a9237e
child 13005 2ba0600be7aa
equal deleted inserted replaced
12219:dd55372693c1 12220:c26b8b402a71
    38 "
    38 "
    39     A shared pool represents a set of bindings which are accessible to all classes
    39     A shared pool represents a set of bindings which are accessible to all classes
    40     which import the pool in its 'pool dictionaries'.
    40     which import the pool in its 'pool dictionaries'.
    41     SharedPool is NOT a dictionary but rather a name space.
    41     SharedPool is NOT a dictionary but rather a name space.
    42     Bindings are represented by 'class variables' - as long as we have no better way to represent
    42     Bindings are represented by 'class variables' - as long as we have no better way to represent
    43     them at least.
    43     them at least. This is done to make stc happy (or at least, to not be forced to adapt it
       
    44     to any new semantics).
    44 "
    45 "
    45 ! !
    46 ! !
    46 
    47 
    47 !SharedPool class methodsFor:'Compatibility-V''Age'!
    48 !SharedPool class methodsFor:'Compatibility-V''Age'!
    48 
    49 
   144 ! !
   145 ! !
   145 
   146 
   146 !SharedPool class methodsFor:'documentation'!
   147 !SharedPool class methodsFor:'documentation'!
   147 
   148 
   148 version
   149 version
   149     ^ '$Header: /cvs/stx/stx/libbasic/SharedPool.st,v 1.7 2009-10-07 15:56:06 cg Exp $'
   150     ^ '$Header: /cvs/stx/stx/libbasic/SharedPool.st,v 1.8 2009-10-12 19:09:14 cg Exp $'
   150 !
   151 !
   151 
   152 
   152 version_CVS
   153 version_CVS
   153     ^ '$Header: /cvs/stx/stx/libbasic/SharedPool.st,v 1.7 2009-10-07 15:56:06 cg Exp $'
   154     ^ '$Header: /cvs/stx/stx/libbasic/SharedPool.st,v 1.8 2009-10-12 19:09:14 cg Exp $'
   154 ! !
   155 ! !