compiler/PPCBridge.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 15 Apr 2015 11:28:09 +0100
changeset 422 116d2b2af905
parent 392 9b297f0d949c
child 452 9f4558b3be66
permissions -rw-r--r--
To fold

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

"{ NameSpace: Smalltalk }"

PPParser subclass:#PPCBridge
	instanceVariableNames:'selector'
	classVariableNames:''
	poolDictionaries:''
	category:'PetitCompiler-Core'
!

!PPCBridge class methodsFor:'as yet unclassified'!

on: aSymbol
	^ self new
		selector: aSymbol;
		yourself
! !

!PPCBridge methodsFor:'as yet unclassified'!

call
	^ 'self callParser: ', self id, '.'.
!

selector: aSymbol
	selector := aSymbol
! !

!PPCBridge methodsFor:'parsing'!

parseOn: aPPContext
	| retval |
	retval := (aPPContext compiledParser) perform: selector.
	(aPPContext compiledParser isError) ifTrue: [ 
		aPPContext compiledParser clearError.		
		^ PPFailure message: 'error' context: aPPContext 
	].
	^ retval
! !