compiler/PPCStarCharSetPredicateNode.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 14 Apr 2015 07:40:53 +0100
changeset 428 b879012e366e
parent 422 116d2b2af905
child 438 20598d7ce9fa
permissions -rw-r--r--
Compilation fixed, removed obsolete methods ...to make it in sync with: Name: PetitCompiler-JanKurs.71 Author: JanKurs Time: 18-11-2014, 09:48:35.425 AM UUID: 06352c33-3c76-4382-8536-0cc48e225117

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

"{ NameSpace: Smalltalk }"

PPCStarNode subclass:#PPCStarCharSetPredicateNode
	instanceVariableNames:'predicate'
	classVariableNames:''
	poolDictionaries:''
	category:'PetitCompiler-Nodes'
!

!PPCStarCharSetPredicateNode methodsFor:'accessing'!

compileWith: compiler effect: effect id: id
	| classification classificationId |
	
	compiler startMethod: id.
	classification := self extendClassification: predicate classification.
	classificationId := compiler idFor: classification prefixed: #classification.
	compiler addConstant: classification as: classificationId.
	
	compiler addVariable: 'retval'.
	compiler add: 'retval := OrderedCollection new.'.	
	compiler add: '[ ', classificationId, ' at: context peek asInteger ] whileTrue: ['.
	compiler indent.
	compiler add: ' retval add: context next.'.
	compiler dedent.
	compiler add: '].'.
   compiler add: '^ retval asArray'.
 ^ compiler stopMethod.
!

extendClassification: classification
	^ (classification asOrderedCollection addLast: false; yourself) asArray
!

firstCharSet
	^ PPCharSetPredicate on: predicate 	
!

predicate
	
	^ predicate
!

predicate: anObject
	
	predicate := anObject
!

prefix
	^ #starPredicate
!

rewrite: changeStatus
	"Nothing TODO"
! !

!PPCStarCharSetPredicateNode methodsFor:'comparing'!

= anotherNode
	super = anotherNode ifFalse: [ ^ false ].
	^ predicate = anotherNode predicate.
!

hash
	^ super hash bitXor: predicate hash
! !