PPEpsilonParser.st
author Claus Gittinger <cg@exept.de>
Tue, 28 May 2013 12:32:04 +0200
changeset 146 2356bad3f706
parent 18 fc91f519ff96
child 163 74d394e7e789
permissions -rw-r--r--
.res -> .$(RES)

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

PPParser subclass:#PPEpsilonParser
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'PetitParser-Parsers'
!


!PPEpsilonParser methodsFor:'parsing'!

parseOn: aStream
	^ nil
! !

!PPEpsilonParser class methodsFor:'documentation'!

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

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

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