compiler/PPCStarAnyNode.st
changeset 421 7e08b31e0dae
parent 392 9b297f0d949c
child 422 116d2b2af905
equal deleted inserted replaced
420:b2f2f15cef26 421:7e08b31e0dae
     1 "{ Package: 'stx:goodies/petitparser/compiler' }"
     1 "{ Package: 'stx:goodies/petitparser/compiler' }"
     2 
     2 
     3 PPCNode subclass:#PPCStarAnyNode
     3 PPCStarNode subclass:#PPCStarAnyNode
     4 	instanceVariableNames:''
     4 	instanceVariableNames:''
     5 	classVariableNames:''
     5 	classVariableNames:''
     6 	poolDictionaries:''
     6 	poolDictionaries:''
     7 	category:'PetitCompiler-Nodes'
     7 	category:'PetitCompiler-Nodes'
     8 !
     8 !
    27  ^ compiler stopMethod.
    27  ^ compiler stopMethod.
    28 !
    28 !
    29 
    29 
    30 prefix
    30 prefix
    31 	^ #starAny
    31 	^ #starAny
       
    32 !
       
    33 
       
    34 rewrite: changeStatus
       
    35 	"Nothing TODO"
    32 ! !
    36 ! !
    33 
    37