parsers/smalltalk/PPSmalltalkToken.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 07 Nov 2014 02:14:26 +0000
changeset 417 3c0a91182e65
parent 386 a409905f7f2d
permissions -rw-r--r--
Smalltalk grammar updated to allow for Smalltalk/X EOL comments

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

PPToken subclass:#PPSmalltalkToken
	instanceVariableNames:'comments'
	classVariableNames:''
	poolDictionaries:''
	category:'PetitSmalltalk-Core'
!


!PPSmalltalkToken methodsFor:'accessing'!

comments
	^ comments
!

comments: anArray
	comments := anArray
! !

!PPSmalltalkToken methodsFor:'compatiblity'!

length
	^ self size
! !

!PPSmalltalkToken class methodsFor:'documentation'!

version_HG

    ^ '$Changeset: <not expanded> $'
! !