IRLiteralVariableStore.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 11 Jun 2008 14:54:42 +0000
changeset 1 0dd36941955f
child 23 377bc46cad12
permissions -rw-r--r--
Initial revision. All tests pass.

"{ Package: '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
    ^'$Id$'
! !