IRTempStore.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 30 Mar 2009 14:47:18 +0000
changeset 9 04518c7fb91c
parent 1 0dd36941955f
child 23 377bc46cad12
permissions -rw-r--r--
Initial support for closures.

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

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


!IRTempStore methodsFor:'interpret'!

executeOn: interpreter 
        interpreter storeTemp: number kind: kind level: level

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

!IRTempStore methodsFor:'testing'!

isRead
	^false
!

isStore
	^true
! !

!IRTempStore class methodsFor:'documentation'!

version
    ^'$Id$'
! !