Variable.st
changeset 261 0372e948ca2d
parent 148 ef0e604209ec
child 263 3b21d0991eff
--- a/Variable.st	Thu Apr 25 09:56:03 1996 +0200
+++ b/Variable.st	Thu Apr 25 13:15:21 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 Object subclass:#Variable
-	 instanceVariableNames:'value name used'
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'System-Compiler-Support'
+	instanceVariableNames:'value name used'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'System-Compiler-Support'
 !
 
 !Variable class methodsFor:'documentation'!
@@ -36,6 +36,7 @@
 documentation
 "
     node for parse-trees, representing variables
+    This is a helper class for the compiler.
 "
 ! !
 
@@ -93,5 +94,5 @@
 !Variable class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/Variable.st,v 1.11 1995-12-03 12:14:22 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Variable.st,v 1.12 1996-04-25 11:14:57 cg Exp $'
 ! !