compiler/PPCStarCharSetPredicateNode.st
changeset 504 0fb1f0799fc1
parent 464 f6d77fee9811
child 516 3b81c9e53352
equal deleted inserted replaced
503:ff58cd9f1f3c 504:0fb1f0799fc1
     6 	instanceVariableNames:'predicate'
     6 	instanceVariableNames:'predicate'
     7 	classVariableNames:''
     7 	classVariableNames:''
     8 	poolDictionaries:''
     8 	poolDictionaries:''
     9 	category:'PetitCompiler-Nodes'
     9 	category:'PetitCompiler-Nodes'
    10 !
    10 !
       
    11 
    11 
    12 
    12 !PPCStarCharSetPredicateNode methodsFor:'accessing'!
    13 !PPCStarCharSetPredicateNode methodsFor:'accessing'!
    13 
    14 
    14 extendClassification: classification
    15 extendClassification: classification
    15     ^ (classification asOrderedCollection addLast: false; yourself) asArray
    16     ^ (classification asOrderedCollection addLast: false; yourself) asArray
    48 
    49 
    49 accept: visitor
    50 accept: visitor
    50     ^ visitor visitStarCharSetPredicateNode: self
    51     ^ visitor visitStarCharSetPredicateNode: self
    51 ! !
    52 ! !
    52 
    53 
       
    54 !PPCStarCharSetPredicateNode class methodsFor:'documentation'!
       
    55 
       
    56 version_HG
       
    57 
       
    58     ^ '$Changeset: <not expanded> $'
       
    59 ! !
       
    60