IRLiteralVariableStore.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 30 Oct 2014 21:43:54 +0000
changeset 41 f3898a3b378d
parent 37 be8c2dd09dff
child 42 acdc3ec6d152
permissions -rw-r--r--
Package renamed from cvut:stx/goodies/newcompiler to ctu:ircompiler

"{ Package: 'ctu:ircompiler' }"

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


!IRLiteralVariableStore methodsFor:'interpret'!

executeOn: interpreter
	interpreter storeIntoLiteralVariable: association
! !

!IRLiteralVariableStore methodsFor:'testing'!

isRead
	^false
!

isStore
	^true
! !

!IRLiteralVariableStore class methodsFor:'documentation'!

version
    ^ '$Id$'
!

version_CVS
    ^ 'Header: /cvs/stx/cvut/stx/goodies/newcompiler/IRLiteralVariableStore.st,v 1.3 2009/10/08 11:56:40 fm Exp '
!

version_SVN
    ^ '$Id::                                                                                                                        $'
! !