IRTempRead.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 01 Apr 2009 21:13:00 +0000
changeset 11 0a50d475c1ff
parent 9 04518c7fb91c
child 23 377bc46cad12
permissions -rw-r--r--
Blocks seems to work. No support for nested block. No support for compiling cheap blocks.

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

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


!IRTempRead methodsFor:'interpret'!

executeOn: interpreter
        interpreter pushTemp: number kind: kind level: level

    "Modified: / 30-03-2009 / 14:02:08 / Jan Vrany <vranyj1@fel.cvut.cz>"
! !

!IRTempRead methodsFor:'testing'!

isRead
	^true
!

isStore
	^false
! !

!IRTempRead class methodsFor:'documentation'!

version
    ^'$Id$'
! !