PPStartOfLine.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 24 Aug 2015 22:32:15 +0100
changeset 528 ebfddc82b8bb
parent 377 6112a403a52d
permissions -rw-r--r--
Removed unused (obsolete) class PPCCompiledMethod

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

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

!PPStartOfLine methodsFor:'parsing'!

parseOn: aPPContext
	(aPPContext isStartOfLine) ifTrue: [ 
		^ #startOfLine
	].
	^ PPFailure message: 'Start of line expected' context: aPPContext at: aPPContext position
! !