category rename
authorClaus Gittinger <cg@exept.de>
Sat, 12 Feb 2000 16:34:02 +0100
changeset 1035 8848672cb893
parent 1034 d4f1640f1aad
child 1036 39ad7c459977
category rename
AssignmentNode.st
BinaryNode.st
BlockNode.st
CascadeNode.st
ConstantNode.st
MessageNode.st
PrimaryNode.st
PrimitiveNode.st
ReturnNode.st
SelfNode.st
StatementNode.st
UnaryNode.st
Variable.st
VariableNode.st
--- a/AssignmentNode.st	Fri Feb 11 14:28:10 2000 +0100
+++ b/AssignmentNode.st	Sat Feb 12 16:34:02 2000 +0100
@@ -213,7 +213,7 @@
     "Modified: 1.3.1996 / 00:42:21 / cg"
 ! !
 
-!AssignmentNode methodsFor:'enumeration'!
+!AssignmentNode methodsFor:'enumerating'!
 
 nodeDo:anEnumerator
     "helper for parse tree walking"
@@ -223,7 +223,7 @@
     "Modified: 19.6.1997 / 16:37:50 / cg"
 ! !
 
-!AssignmentNode methodsFor:'evaluating'!
+!AssignmentNode methodsFor:'evaluation'!
 
 evaluate
     |value|
@@ -257,5 +257,5 @@
 !AssignmentNode class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/AssignmentNode.st,v 1.30 1999-06-29 10:04:08 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/AssignmentNode.st,v 1.31 2000-02-12 15:33:54 cg Exp $'
 ! !
--- a/BinaryNode.st	Fri Feb 11 14:28:10 2000 +0100
+++ b/BinaryNode.st	Sat Feb 12 16:34:02 2000 +0100
@@ -178,7 +178,7 @@
     "Modified: / 4.7.1999 / 19:05:13 / cg"
 ! !
 
-!BinaryNode methodsFor:'evaluating'!
+!BinaryNode methodsFor:'evaluation'!
 
 evaluate
     selector := selector asSymbol.
@@ -236,5 +236,5 @@
 !BinaryNode class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/BinaryNode.st,v 1.27 1999-07-04 17:12:14 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/BinaryNode.st,v 1.28 2000-02-12 15:33:47 cg Exp $'
 ! !
--- a/BlockNode.st	Fri Feb 11 14:28:10 2000 +0100
+++ b/BlockNode.st	Sat Feb 12 16:34:02 2000 +0100
@@ -547,7 +547,7 @@
     "Modified: 25.6.1997 / 15:07:07 / cg"
 ! !
 
-!BlockNode methodsFor:'enumeration'!
+!BlockNode methodsFor:'enumerating'!
 
 allSubBlocksDo:aBlock
     "recursively enumerate all of my subblocks"
@@ -580,7 +580,7 @@
     "Modified: 19.6.1997 / 17:17:57 / cg"
 ! !
 
-!BlockNode methodsFor:'evaluating'!
+!BlockNode methodsFor:'evaluation'!
 
 evaluate
     ^ self
@@ -942,5 +942,5 @@
 !BlockNode class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/BlockNode.st,v 1.56 1999-08-02 08:55:01 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/BlockNode.st,v 1.57 2000-02-12 15:33:40 cg Exp $'
 ! !
--- a/CascadeNode.st	Fri Feb 11 14:28:10 2000 +0100
+++ b/CascadeNode.st	Sat Feb 12 16:34:02 2000 +0100
@@ -56,7 +56,7 @@
     self codeSendOn:aStream inBlock:b valueNeeded:valueNeeded for:aCompiler
 ! !
 
-!CascadeNode methodsFor:'enumeration'!
+!CascadeNode methodsFor:'enumerating'!
 
 nodeDo:anEnumerator
     "helper for parse tree walking"
@@ -90,7 +90,7 @@
     "Modified: 19.6.1997 / 17:32:47 / cg"
 ! !
 
-!CascadeNode methodsFor:'evaluating'!
+!CascadeNode methodsFor:'evaluation'!
 
 evaluate
     |t argValueArray|
@@ -186,5 +186,5 @@
 !CascadeNode class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/CascadeNode.st,v 1.20 1999-06-23 22:17:55 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/CascadeNode.st,v 1.21 2000-02-12 15:33:32 cg Exp $'
 ! !
--- a/ConstantNode.st	Fri Feb 11 14:28:10 2000 +0100
+++ b/ConstantNode.st	Sat Feb 12 16:34:02 2000 +0100
@@ -246,7 +246,7 @@
     ^ self error:'assignment to literals not allowed'
 ! !
 
-!ConstantNode methodsFor:'enumeration'!
+!ConstantNode methodsFor:'enumerating'!
 
 nodeDo:anEnumerator
     "helper for parse tree walking"
@@ -256,7 +256,7 @@
     "Modified: 19.6.1997 / 16:40:59 / cg"
 ! !
 
-!ConstantNode methodsFor:'evaluating'!
+!ConstantNode methodsFor:'evaluation'!
 
 evaluate
     ^ value
@@ -324,5 +324,5 @@
 !ConstantNode class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/ConstantNode.st,v 1.27 1999-04-24 21:39:22 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/ConstantNode.st,v 1.28 2000-02-12 15:33:21 cg Exp $'
 ! !
--- a/MessageNode.st	Fri Feb 11 14:28:10 2000 +0100
+++ b/MessageNode.st	Sat Feb 12 16:34:02 2000 +0100
@@ -2577,7 +2577,7 @@
 
 ! !
 
-!MessageNode methodsFor:'enumeration'!
+!MessageNode methodsFor:'enumerating'!
 
 nodeDo:anEnumerator
     "helper for parse tree walking"
@@ -2591,7 +2591,7 @@
     "Modified: 19.6.1997 / 17:08:28 / cg"
 ! !
 
-!MessageNode methodsFor:'evaluating'!
+!MessageNode methodsFor:'evaluation'!
 
 evaluate
     |r nargs argValueArray class|
@@ -2812,5 +2812,5 @@
 !MessageNode class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/MessageNode.st,v 1.108 2000-02-11 13:28:10 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/MessageNode.st,v 1.109 2000-02-12 15:32:56 cg Exp $'
 ! !
--- a/PrimaryNode.st	Fri Feb 11 14:28:10 2000 +0100
+++ b/PrimaryNode.st	Sat Feb 12 16:34:02 2000 +0100
@@ -64,7 +64,7 @@
     ^ self subclassResponsibility
 ! !
 
-!PrimaryNode methodsFor:'evaluating'!
+!PrimaryNode methodsFor:'evaluation'!
 
 evaluate
     ^ self subclassResponsibility
@@ -99,5 +99,5 @@
 !PrimaryNode class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/PrimaryNode.st,v 1.18 1998-05-14 17:34:05 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/PrimaryNode.st,v 1.19 2000-02-12 15:32:47 cg Exp $'
 ! !
--- a/PrimitiveNode.st	Fri Feb 11 14:28:10 2000 +0100
+++ b/PrimitiveNode.st	Sat Feb 12 16:34:02 2000 +0100
@@ -110,7 +110,7 @@
     self error:'cannot compile primitives (as yet)' mayProceed:true
 ! !
 
-!PrimitiveNode methodsFor:'evaluating'!
+!PrimitiveNode methodsFor:'evaluation'!
 
 evaluate
     "catch evaluation"
@@ -139,5 +139,5 @@
 !PrimitiveNode class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/PrimitiveNode.st,v 1.16 1999-08-04 14:09:37 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/PrimitiveNode.st,v 1.17 2000-02-12 15:32:41 cg Exp $'
 ! !
--- a/ReturnNode.st	Fri Feb 11 14:28:10 2000 +0100
+++ b/ReturnNode.st	Sat Feb 12 16:34:02 2000 +0100
@@ -103,7 +103,7 @@
     "Modified: 21.10.1996 / 14:54:36 / cg"
 ! !
 
-!ReturnNode methodsFor:'enumeration'!
+!ReturnNode methodsFor:'enumerating'!
 
 nodeDo:anEnumerator
     "helper for parse tree walking"
@@ -113,7 +113,7 @@
     "Modified: 19.6.1997 / 16:42:40 / cg"
 ! !
 
-!ReturnNode methodsFor:'evaluating'!
+!ReturnNode methodsFor:'evaluation'!
 
 evaluateExpression
     |val|
@@ -147,5 +147,5 @@
 !ReturnNode class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/ReturnNode.st,v 1.23 1999-06-29 10:04:19 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/ReturnNode.st,v 1.24 2000-02-12 15:32:34 cg Exp $'
 ! !
--- a/SelfNode.st	Fri Feb 11 14:28:10 2000 +0100
+++ b/SelfNode.st	Sat Feb 12 16:34:02 2000 +0100
@@ -81,7 +81,7 @@
     ^ self error:'store into self - cannot happen'
 ! !
 
-!SelfNode methodsFor:'enumeration'!
+!SelfNode methodsFor:'enumerating'!
 
 nodeDo:anEnumerator
     "helper for parse tree walking"
@@ -91,7 +91,7 @@
     "Created: 19.6.1997 / 17:20:02 / cg"
 ! !
 
-!SelfNode methodsFor:'evaluating'!
+!SelfNode methodsFor:'evaluation'!
 
 evaluate
     ^ value
@@ -130,5 +130,5 @@
 !SelfNode class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/SelfNode.st,v 1.16 1999-06-23 22:21:33 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/SelfNode.st,v 1.17 2000-02-12 15:32:27 cg Exp $'
 ! !
--- a/StatementNode.st	Fri Feb 11 14:28:10 2000 +0100
+++ b/StatementNode.st	Sat Feb 12 16:34:02 2000 +0100
@@ -114,7 +114,7 @@
     expression codeOn:aStream inBlock:b for:aCompiler
 ! !
 
-!StatementNode methodsFor:'enumeration'!
+!StatementNode methodsFor:'enumerating'!
 
 nodeDo:anEnumerator
     "helper for parse tree walking"
@@ -135,7 +135,7 @@
     "Modified: 19.6.1997 / 17:06:47 / cg"
 ! !
 
-!StatementNode methodsFor:'evaluating'!
+!StatementNode methodsFor:'evaluation'!
 
 evaluate
     |lastValue thisStatement|
@@ -218,5 +218,5 @@
 !StatementNode class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/StatementNode.st,v 1.22 1999-10-06 20:44:39 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/StatementNode.st,v 1.23 2000-02-12 15:32:20 cg Exp $'
 ! !
--- a/UnaryNode.st	Fri Feb 11 14:28:10 2000 +0100
+++ b/UnaryNode.st	Sat Feb 12 16:34:02 2000 +0100
@@ -252,7 +252,7 @@
     "Modified: 23.10.1997 / 02:04:51 / cg"
 ! !
 
-!UnaryNode methodsFor:'evaluating'!
+!UnaryNode methodsFor:'evaluation'!
 
 evaluate
     "evaluate the expression represented by the receiver"
@@ -303,5 +303,5 @@
 !UnaryNode class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/UnaryNode.st,v 1.31 1999-11-16 20:51:20 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/UnaryNode.st,v 1.32 2000-02-12 15:32:12 cg Exp $'
 ! !
--- a/Variable.st	Fri Feb 11 14:28:10 2000 +0100
+++ b/Variable.st	Sat Feb 12 16:34:02 2000 +0100
@@ -94,7 +94,7 @@
     ^ value
 ! !
 
-!Variable methodsFor:'enumeration'!
+!Variable methodsFor:'enumerating'!
 
 nodeDo:anEnumerator
     "helper for parse tree walking"
@@ -107,5 +107,5 @@
 !Variable class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/Variable.st,v 1.14 1997-06-19 16:38:52 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Variable.st,v 1.15 2000-02-12 15:34:02 cg Exp $'
 ! !
--- a/VariableNode.st	Fri Feb 11 14:28:10 2000 +0100
+++ b/VariableNode.st	Sat Feb 12 16:34:02 2000 +0100
@@ -613,7 +613,7 @@
     "Modified: / 17.1.1998 / 04:04:23 / cg"
 ! !
 
-!VariableNode methodsFor:'enumeration'!
+!VariableNode methodsFor:'enumerating'!
 
 nodeDo:anEnumerator
     "helper for parse tree walking"
@@ -623,7 +623,7 @@
     "Created: 19.6.1997 / 16:41:35 / cg"
 ! !
 
-!VariableNode methodsFor:'evaluating'!
+!VariableNode methodsFor:'evaluation'!
 
 evaluate
     |nameSym|
@@ -832,5 +832,5 @@
 !VariableNode class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/VariableNode.st,v 1.45 1999-09-26 11:12:37 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/VariableNode.st,v 1.46 2000-02-12 15:32:04 cg Exp $'
 ! !