# HG changeset patch # User Claus Gittinger # Date 1393943592 -3600 # Node ID e8984d5abf0f940baf701c93106ea2b1b1ffb7ed # Parent 44b2dcba820ecf6b47618e16d89127795a21fcd4 update diff -r 44b2dcba820e -r e8984d5abf0f PPPluggableParser.st --- a/PPPluggableParser.st Tue Mar 04 15:33:11 2014 +0100 +++ b/PPPluggableParser.st Tue Mar 04 15:33:12 2014 +0100 @@ -14,6 +14,12 @@ ^ self new initializeOn: aBlock ! ! +!PPPluggableParser methodsFor:'*petitanalyzer-matching'! + +match: aParser inContext: aDictionary seen: anIdentitySet + ^ (super match: aParser inContext: aDictionary seen: anIdentitySet) and: [ self block = aParser block ] +! ! + !PPPluggableParser methodsFor:'accessing'! block @@ -42,13 +48,14 @@ !PPPluggableParser class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPPluggableParser.st,v 1.3 2012-05-04 22:10:02 vrany Exp $' + ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPPluggableParser.st,v 1.4 2014-03-04 14:33:12 cg Exp $' ! version_CVS - ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPPluggableParser.st,v 1.3 2012-05-04 22:10:02 vrany Exp $' + ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPPluggableParser.st,v 1.4 2014-03-04 14:33:12 cg Exp $' ! version_SVN - ^ '§Id: PPPluggableParser.st 2 2010-12-17 18:44:23Z vranyj1 §' + ^ '$Id: PPPluggableParser.st,v 1.4 2014-03-04 14:33:12 cg Exp $' ! ! +