compiler/tests/extras/PPCLRPSpawn.st
author Jan Vrany <jan.vrany@labware.com>
Wed, 10 Jun 2020 21:33:27 +0100
changeset 650 4c6ed0a28d18
parent 511 527038bc8edf
permissions -rw-r--r--
Replace `ifNil:[...]` with `isNil ifTrue:[...]` The latter is optimized by compilers and therefore faster.

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

"{ NameSpace: Smalltalk }"

PPCLRPNode subclass:#PPCLRPSpawn
	instanceVariableNames:'machine state'
	classVariableNames:''
	poolDictionaries:''
	category:'PetitCompiler-Extras-Tests-LRP'
!

!PPCLRPSpawn class methodsFor:'instance creation'!

machine: machineName state: stateName
    |retval|
    retval := self new.
    retval machine: machineName.
    retval state: stateName.
    ^retval
! !

!PPCLRPSpawn methodsFor:'accessing'!

machine
    ^ machine
!

machine: anObject
    machine := anObject
!

state
    ^ state
!

state: anObject
    state := anObject
! !

!PPCLRPSpawn methodsFor:'printing'!

printOn: aStream
    aStream nextPutAll: 'PPCLRPSpawn '.
    aStream nextPutAll: machine asString.
    aStream nextPutAll: ' : '.
    aStream nextPutAll: state asString.
! !