IRTempRead.st
changeset 1 0dd36941955f
child 9 04518c7fb91c
--- /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$'
+! !