PPAndParser.st
author Claus Gittinger <cg@exept.de>
Tue, 04 Mar 2014 21:27:43 +0100
changeset 284 c1b9188776ff
parent 49 9852b214d4dd
child 376 a2656b27cace
permissions -rw-r--r--
moved

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

PPDelegateParser subclass:#PPAndParser
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'PetitParser-Parsers'
!


!PPAndParser methodsFor:'operations'!

and
	^ self
! !

!PPAndParser methodsFor:'parsing'!

parseOn: aStream
	| element position |
	position := aStream position.
	element := parser parseOn: aStream.
	aStream position: position.
	^ element
! !

!PPAndParser class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPAndParser.st,v 1.3 2012-05-04 22:08:57 vrany Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPAndParser.st,v 1.3 2012-05-04 22:08:57 vrany Exp $'
!

version_SVN
    ^ '§Id: PPAndParser.st 2 2010-12-17 18:44:23Z vranyj1 §'
! !