PPUnresolvedParser.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 04 May 2012 23:58:48 +0200
changeset 10 cbaaa689fab2
parent 4 90de244a7fa2
child 27 d83816ceeb04
permissions -rw-r--r--
Checkin from browser

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

PPParser subclass:#PPUnresolvedParser
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'PetitParser-Tools'
!

PPUnresolvedParser comment:'This is a temporary placeholder or forward reference to a parser that has not been defined yet. If everything goes well it will eventually be replaced with the real parser instance.'
!


!PPUnresolvedParser methodsFor:'parsing'!

parseOn: aStream
	self error: self printString , ' need to be resolved before execution.'
! !

!PPUnresolvedParser methodsFor:'testing'!

isUnresolved
	^ true
! !

!PPUnresolvedParser class methodsFor:'documentation'!

version_SVN
    ^ '$Id: PPUnresolvedParser.st,v 1.2 2012-01-13 11:22:50 cg Exp $'
! !