PrimaryNode.st
changeset 261 0372e948ca2d
parent 148 ef0e604209ec
child 263 3b21d0991eff
--- a/PrimaryNode.st	Thu Apr 25 09:56:03 1996 +0200
+++ b/PrimaryNode.st	Thu Apr 25 13:15:21 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 ParseNode subclass:#PrimaryNode
-	 instanceVariableNames:'value'
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'System-Compiler-Support'
+	instanceVariableNames:'value'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'System-Compiler-Support'
 !
 
 !PrimaryNode class methodsFor:'documentation'!
@@ -36,6 +36,7 @@
 documentation
 "
     node for parse-trees, representing primaries (variables & literals)
+    This is a helper class for the compiler.
 "
 ! !
 
@@ -91,5 +92,5 @@
 !PrimaryNode class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/PrimaryNode.st,v 1.14 1995-12-03 12:15:02 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/PrimaryNode.st,v 1.15 1996-04-25 11:13:39 cg Exp $'
 ! !