compiler/PPCInlineCharSetPredicateNode.st
changeset 442 d333233f7ebd
parent 441 6f0eb79b3dda
parent 438 20598d7ce9fa
child 443 2c87ed364404
equal deleted inserted replaced
441:6f0eb79b3dda 442:d333233f7ebd
     1 "{ Package: 'stx:goodies/petitparser/compiler' }"
       
     2 
       
     3 "{ NameSpace: Smalltalk }"
       
     4 
       
     5 PPCCharSetPredicateNode subclass:#PPCInlineCharSetPredicateNode
       
     6 	instanceVariableNames:''
       
     7 	classVariableNames:''
       
     8 	poolDictionaries:''
       
     9 	category:'PetitCompiler-Nodes'
       
    10 !
       
    11 
       
    12 !PPCInlineCharSetPredicateNode methodsFor:'as yet unclassified'!
       
    13 
       
    14 asInlined
       
    15 	^ self
       
    16 !
       
    17 
       
    18 compileWith: compiler effect: effect id: id
       
    19 	compiler startInline: id.
       
    20 	compiler add: ''.
       
    21 	self bodyOfPredicate: compiler.
       
    22  ^ compiler stopInline.
       
    23 ! !
       
    24