compiler/PPCAbstractActionNode.st
changeset 421 7e08b31e0dae
parent 392 9b297f0d949c
child 422 116d2b2af905
equal deleted inserted replaced
420:b2f2f15cef26 421:7e08b31e0dae
    23 
    23 
    24 prefix
    24 prefix
    25 	^ #action
    25 	^ #action
    26 ! !
    26 ! !
    27 
    27 
       
    28 !PPCAbstractActionNode methodsFor:'comparing'!
       
    29 
       
    30 = anotherNode
       
    31 	super = anotherNode ifFalse: [ ^ false ].
       
    32 	^ block = anotherNode block.
       
    33 !
       
    34 
       
    35 hash
       
    36 	^ super hash bitXor: block hash
       
    37 ! !
       
    38