PPWrappingParser.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 26 Aug 2015 23:34:48 +0100
changeset 533 666372dbe307
parent 377 6112a403a52d
child 642 77d5fddb6462
permissions -rw-r--r--
PPCConfiguration refactoring: [5/10]: Commented options in PPCCompilationOptions. So it's more clear for what the option is and how to use it. This is a base for user-documentation as options are meant to be set by the end user.

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

PPActionParser subclass:#PPWrappingParser
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'PetitParser-Parsers'
!


!PPWrappingParser methodsFor:'parsing'!

parseOn: aPPContext
	^ block value: aPPContext value: [ parser parseOn: aPPContext ]
! !

!PPWrappingParser class methodsFor:'documentation'!

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

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

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