IRPop.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' }"

IRInstruction subclass:#IRPop
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'NewCompiler-IR'
!

IRPop comment:'Instruction "popTop"'
!


!IRPop methodsFor:'interpret'!

executeOn: interpreter

	^ interpreter popTop
! !

!IRPop methodsFor:'testing'!

isPop
	^true
! !

!IRPop class methodsFor:'documentation'!

version
    ^'$Id$'
! !