diff -r de981640a2ec -r 0dd36941955f IRTempRead.st --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/IRTempRead.st Wed Jun 11 14:54:42 2008 +0000 @@ -0,0 +1,31 @@ +"{ Package: 'stx:goodies/newcompiler' }" + +IRTempAccess subclass:#IRTempRead + instanceVariableNames:'' + classVariableNames:'' + poolDictionaries:'' + category:'NewCompiler-IR' +! + + +!IRTempRead methodsFor:'interpret'! + +executeOn: interpreter + interpreter pushTemp: number. +! ! + +!IRTempRead methodsFor:'testing'! + +isRead + ^true +! + +isStore + ^false +! ! + +!IRTempRead class methodsFor:'documentation'! + +version + ^'$Id$' +! !