diff -r 2a996e0def30 -r bd3f19f6009a ConstantNode.st --- a/ConstantNode.st Thu Aug 31 12:01:00 2000 +0200 +++ b/ConstantNode.st Thu Aug 31 12:03:58 2000 +0200 @@ -10,6 +10,8 @@ hereby transferred. " +"{ Package: 'stx:libcomp' }" + PrimaryNode subclass:#ConstantNode instanceVariableNames:'' classVariableNames:'TrueNode FalseNode NilNode Const0Node Const1Node Float0Node' @@ -269,7 +271,7 @@ ^ aValue ! ! -!ConstantNode methodsFor:'printing'! +!ConstantNode methodsFor:'printing & storing'! displayString "return a printed representation of the receiver for displaying" @@ -324,5 +326,5 @@ !ConstantNode class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libcomp/ConstantNode.st,v 1.28 2000-02-12 15:33:21 cg Exp $' + ^ '$Header: /cvs/stx/stx/libcomp/ConstantNode.st,v 1.29 2000-08-31 10:02:35 cg Exp $' ! !