IRLiteralVariableStore.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 24 Mar 2010 07:50:55 +0000
changeset 30 1b7ff9c8c40b
parent 26 db19d89eef60
child 37 be8c2dd09dff
permissions -rw-r--r--
Fixed bug that caused bad code generation for closures with more than one basic blocks.

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

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
    ^ '$Header: /cvs/stx/cvut/stx/goodies/newcompiler/IRLiteralVariableStore.st,v 1.3 2009/10/08 11:56:40 fm Exp $'
!

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