compiler/PPCAbstractActionNode.st
changeset 391 553a5456963b
child 392 9b297f0d949c
equal deleted inserted replaced
390:17ba167b8ee1 391:553a5456963b
       
     1 "{ Package: 'stx:goodies/petitparser/compiler' }"
       
     2 
       
     3 PPCDelegateNode subclass:#PPCAbstractActionNode
       
     4 	instanceVariableNames:'block'
       
     5 	classVariableNames:''
       
     6 	poolDictionaries:''
       
     7 	category:'PetitCompiler-Nodes'
       
     8 !
       
     9 
       
    10 PPCAbstractActionNode comment:''
       
    11 !
       
    12 
       
    13 !PPCAbstractActionNode methodsFor:'accessing'!
       
    14 
       
    15 block
       
    16 	
       
    17 	^ block
       
    18 !
       
    19 
       
    20 block: anObject
       
    21 	
       
    22 	block := anObject
       
    23 ! !
       
    24 
       
    25 !PPCAbstractActionNode methodsFor:'as yet unclassified'!
       
    26 
       
    27 prefix
       
    28 	^ #action
       
    29 ! !
       
    30