analyzer/PPReplaceRule.st
author Claus Gittinger <cg@exept.de>
Tue, 04 Mar 2014 21:27:53 +0100
changeset 294 5d418170085c
parent 201 29f7cfdac492
child 376 a2656b27cace
permissions -rw-r--r--
moved

"{ Package: 'stx:goodies/petitparser/analyzer' }"

PPRule subclass:#PPReplaceRule
	instanceVariableNames:'verificationBlock'
	classVariableNames:''
	poolDictionaries:''
	category:'PetitAnalyzer-Core'
!


!PPReplaceRule methodsFor:'initialization'!

initialize
	super initialize.
	verificationBlock := [ :parser | true ]
!

setVerificationBlock: aBlock
	verificationBlock := aBlock
! !

!PPReplaceRule methodsFor:'matching'!

canMatch: aParser 
	^ verificationBlock cull: aParser
! !

!PPReplaceRule class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/petitparser/analyzer/PPReplaceRule.st,v 1.2 2014-03-04 20:27:53 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/goodies/petitparser/analyzer/PPReplaceRule.st,v 1.2 2014-03-04 20:27:53 cg Exp $'
! !