ConstantNode.st
changeset 148 ef0e604209ec
parent 140 1ef1d1395146
child 242 3cca9ffd2620
equal deleted inserted replaced
147:9de6bea67dbf 148:ef0e604209ec
    35 
    35 
    36 documentation
    36 documentation
    37 "
    37 "
    38     node for parse-trees, representing literal constants
    38     node for parse-trees, representing literal constants
    39 "
    39 "
    40 !
       
    41 
       
    42 version
       
    43     ^ '$Header: /cvs/stx/stx/libcomp/ConstantNode.st,v 1.18 1995-11-23 02:12:53 cg Exp $'
       
    44 ! !
    40 ! !
    45 
    41 
    46 !ConstantNode class methodsFor:'instance creation'!
    42 !ConstantNode class methodsFor:'instance creation'!
    47 
    43 
    48 type:t value:val
    44 type:t value:val
   232 
   228 
   233 isConstant
   229 isConstant
   234     ^ true
   230     ^ true
   235 ! !
   231 ! !
   236 
   232 
       
   233 !ConstantNode class methodsFor:'documentation'!
       
   234 
       
   235 version
       
   236     ^ '$Header: /cvs/stx/stx/libcomp/ConstantNode.st,v 1.19 1995-12-03 12:16:08 cg Exp $'
       
   237 ! !