compiler/PPCTokenNode.st
changeset 421 7e08b31e0dae
parent 414 0eaf09920532
child 422 116d2b2af905
equal deleted inserted replaced
420:b2f2f15cef26 421:7e08b31e0dae
    64 
    64 
    65 prefix
    65 prefix
    66 	^ #token
    66 	^ #token
    67 ! !
    67 ! !
    68 
    68 
       
    69 !PPCTokenNode methodsFor:'comparing'!
       
    70 
       
    71 = anotherNode
       
    72 	super = anotherNode ifFalse: [ ^ false ].
       
    73 	^ tokenClass = anotherNode tokenClass.
       
    74 !
       
    75 
       
    76 hash
       
    77 	^ super hash bitXor: tokenClass hash
       
    78 ! !
       
    79