PolymorphicInlineCache.st
branchjv
changeset 17872 55a6f54e36ff
parent 17868 de8a482a8a10
child 17875 76b088500bd1
equal deleted inserted replaced
17871:19fef41751ee 17872:55a6f54e36ff
    24  OTHER DEALINGS IN THE SOFTWARE.
    24  OTHER DEALINGS IN THE SOFTWARE.
    25 "
    25 "
    26 "{ Package: 'stx:libbasic' }"
    26 "{ Package: 'stx:libbasic' }"
    27 
    27 
    28 Object subclass:#PolymorphicInlineCache
    28 Object subclass:#PolymorphicInlineCache
    29 	instanceVariableNames:'address'
    29 	instanceVariableNames:'address argSize'
    30 	classVariableNames:''
    30 	classVariableNames:''
    31 	poolDictionaries:''
    31 	poolDictionaries:''
    32 	category:'Kernel-Classes'
    32 	category:'Kernel-Classes'
    33 !
    33 !
    34 
    34 
    73 
    73 
    74     [instance variables:]
    74     [instance variables:]
    75         address     <ExternalAddress> a pointer to the VM inline cache structure.
    75         address     <ExternalAddress> a pointer to the VM inline cache structure.
    76                                     if the adress is NULL, then PolymorphicInlineCache
    76                                     if the adress is NULL, then PolymorphicInlineCache
    77                                     is invalid.
    77                                     is invalid.
    78 
    78         argSize       <SmallInt> is a number of arguments
    79     [class variables:]
    79     [class variables:]
    80 
    80 
    81     [see also:]
    81     [see also:]
    82 
    82 
    83 "
    83 "
    84 ! !
    84 ! !
    85 
    85 
    86 !PolymorphicInlineCache class methodsFor:'documentation'!
    86 !PolymorphicInlineCache class methodsFor:'documentation'!
    87 
    87 
    88 version_SVN
    88 version_SVN
    89     ^ '$Id: PolymorphicInlineCache.st 10699 2011-09-29 15:40:27Z vranyj1 $'
    89     ^ '$Id: PolymorphicInlineCache.st 10704 2011-10-01 18:43:30Z kursjan $'
    90 ! !
    90 ! !