IRTempRead.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 11 Jun 2008 14:54:42 +0000
changeset 1 0dd36941955f
child 9 04518c7fb91c
permissions -rw-r--r--
Initial revision. All tests pass.

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

IRTempAccess subclass:#IRTempRead
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'NewCompiler-IR'
!


!IRTempRead methodsFor:'interpret'!

executeOn: interpreter
	interpreter pushTemp: number.
! !

!IRTempRead methodsFor:'testing'!

isRead
	^true
!

isStore
	^false
! !

!IRTempRead class methodsFor:'documentation'!

version
    ^'$Id$'
! !