PPEpsilonParser.st
author Claus Gittinger <cg@exept.de>
Tue, 04 Mar 2014 15:32:00 +0100
changeset 159 0a53379a1214
parent 18 fc91f519ff96
child 163 74d394e7e789
permissions -rw-r--r--
class: PPStream added: #collection

"{ 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 §'
! !