PPEpsilonParser.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 19 Jun 2015 07:14:07 +0100
changeset 500 cf3cbf3933f1
parent 163 74d394e7e789
permissions -rw-r--r--
Use RBVariableNode>>name: to change variable's name. The old way - `node token value:` is working in Pharo - there's no token in RBVariableNode. Sigh.

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

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


!PPEpsilonParser methodsFor:'*petitanalyzer-testing'!

isNullable
	^ true
! !

!PPEpsilonParser methodsFor:'parsing'!

parseOn: aStream
	^ nil
! !

!PPEpsilonParser class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPEpsilonParser.st,v 1.4 2014-03-04 14:32:27 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPEpsilonParser.st,v 1.4 2014-03-04 14:32:27 cg Exp $'
!

version_SVN
    ^ '$Id: PPEpsilonParser.st,v 1.4 2014-03-04 14:32:27 cg Exp $'
! !