IRLiteralVariableRead.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 30 Oct 2014 22:42:40 +0000
changeset 45 04a50b0d540a
parent 43 c8afb8e4c3cc
permissions -rw-r--r--
Reduced dependencies to only stx:libbasic and stx:libcomp. The latter will wanish as soon as actual bytecode assemby is implemented.

"{ Package: 'ctu:ircompiler' }"

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


!IRLiteralVariableRead methodsFor:'interpret'!

executeOn: interpreter
	interpreter pushLiteralVariable: association
! !

!IRLiteralVariableRead methodsFor:'testing'!

isRead
	^true
!

isStore
	^false
! !

!IRLiteralVariableRead class methodsFor:'documentation'!

version_CVS
    ^ 'Header: /cvs/stx/cvut/stx/goodies/newcompiler/IRLiteralVariableRead.st,v 1.3 2009/10/08 12:03:40 fm Exp '
!

version_SVN
    ^ '$Id::                                                                                                                        $'
! !