IRInstVarRead.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 30 Mar 2009 17:49:01 +0000
changeset 10 0fd549e0c784
parent 1 0dd36941955f
child 23 377bc46cad12
permissions -rw-r--r--
First simple block works. See IRBuilderTest>>testBlock_blockTempArg. More tests are comming.

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

IRInstVarAccess subclass:#IRInstVarRead
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'NewCompiler-IR'
!


!IRInstVarRead methodsFor:'interpret'!

executeOn: interpreter

    interpreter pushInstVar: number

    "Modified: / 11-06-2008 / 13:17:19 / Jan Vrany <vranyj1@fel.cvut.cz>"
! !

!IRInstVarRead methodsFor:'testing'!

isRead
	^true.
!

isStore
	^false.
! !

!IRInstVarRead class methodsFor:'documentation'!

version
    ^'$Id$'
! !