IRLiteralVariableRead.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 02 Dec 2008 09:43:42 +0000
changeset 7 0de2eaa86456
parent 1 0dd36941955f
child 23 377bc46cad12
permissions -rw-r--r--
IRBytecodeGenerator emits lineno instructions only when lineno differs from the last one

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

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


!IRLiteralVariableRead methodsFor:'interpret'!

executeOn: interpreter
	interpreter pushLiteralVariable: association
! !

!IRLiteralVariableRead methodsFor:'testing'!

isRead
	^true
!

isStore
	^false
! !

!IRLiteralVariableRead class methodsFor:'documentation'!

version
    ^'$Id$'
! !