PPUnresolvedParser.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 07 Sep 2015 11:53:38 +0100
changeset 538 16e8536f5cfb
parent 27 d83816ceeb04
child 642 77d5fddb6462
permissions -rw-r--r--
PPCConfiguration refactoring: [10/10]: Cleaned up compilation API The main compilation method is now PPParser>>compileWithOptions: Removed oither old and unused compilation methods from PPParser and other PetitCompiler classes.

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

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


!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
    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPUnresolvedParser.st,v 1.3 2012-05-04 22:02:32 vrany Exp $'
!

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

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