compiler/PPCListNode.st
changeset 414 0eaf09920532
parent 392 9b297f0d949c
child 421 7e08b31e0dae
equal deleted inserted replaced
413:5389e6fbb3bc 414:0eaf09920532
     4 	instanceVariableNames:'children'
     4 	instanceVariableNames:'children'
     5 	classVariableNames:''
     5 	classVariableNames:''
     6 	poolDictionaries:''
     6 	poolDictionaries:''
     7 	category:'PetitCompiler-Nodes'
     7 	category:'PetitCompiler-Nodes'
     8 !
     8 !
       
     9 
     9 
    10 
    10 !PPCListNode methodsFor:'accessing'!
    11 !PPCListNode methodsFor:'accessing'!
    11 
    12 
    12 children
    13 children
    13 	^ children
    14 	^ children
    61 	retval := retval inline: params status: changeStatus.
    62 	retval := retval inline: params status: changeStatus.
    62 	
    63 	
    63 	^ retval
    64 	^ retval
    64 ! !
    65 ! !
    65 
    66 
       
    67 !PPCListNode class methodsFor:'documentation'!
       
    68 
       
    69 version_HG
       
    70 
       
    71     ^ '$Changeset: <not expanded> $'
       
    72 ! !
       
    73