StatementNode.st
changeset 261 0372e948ca2d
parent 148 ef0e604209ec
child 263 3b21d0991eff
--- a/StatementNode.st	Thu Apr 25 09:56:03 1996 +0200
+++ b/StatementNode.st	Thu Apr 25 13:15:21 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 ParseNode subclass:#StatementNode
-	 instanceVariableNames:'expression nextStatement'
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'System-Compiler-Support'
+	instanceVariableNames:'expression nextStatement'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'System-Compiler-Support'
 !
 
 !StatementNode class methodsFor:'documentation'!
@@ -36,6 +36,7 @@
 documentation
 "
     node for parse-trees, representing statements
+    This is a helper class for the compiler.
 "
 ! !
 
@@ -145,5 +146,5 @@
 !StatementNode class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/StatementNode.st,v 1.13 1995-12-03 12:17:26 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/StatementNode.st,v 1.14 1996-04-25 11:14:07 cg Exp $'
 ! !