IRLiteralVariableRead.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 11 May 2009 20:20:05 +0000
changeset 16 f325defc9c7e
parent 1 0dd36941955f
child 23 377bc46cad12
permissions -rw-r--r--
Invalid intruction ordering bug fixed.

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

IRLiteralVariableAccess subclass:#IRLiteralVariableRead
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'NewCompiler-IR'
!


!IRLiteralVariableRead methodsFor:'interpret'!

executeOn: interpreter
	interpreter pushLiteralVariable: association
! !

!IRLiteralVariableRead methodsFor:'testing'!

isRead
	^true
!

isStore
	^false
! !

!IRLiteralVariableRead class methodsFor:'documentation'!

version
    ^'$Id$'
! !