IRLiteralVariableStore.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 30 Oct 2014 22:23:12 +0000
changeset 43 c8afb8e4c3cc
parent 42 acdc3ec6d152
permissions -rw-r--r--
Removed obsolete #version method

"{ Package: 'ctu:ircompiler' }"

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


!IRLiteralVariableStore methodsFor:'interpret'!

executeOn: interpreter
	interpreter storeIntoLiteralVariable: association
! !

!IRLiteralVariableStore methodsFor:'testing'!

isRead
	^false
!

isStore
	^true
! !

!IRLiteralVariableStore class methodsFor:'documentation'!

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::                                                                                                                        $'
! !