PrimaryNode.st
changeset 148 ef0e604209ec
parent 140 1ef1d1395146
child 261 0372e948ca2d
equal deleted inserted replaced
147:9de6bea67dbf 148:ef0e604209ec
    35 
    35 
    36 documentation
    36 documentation
    37 "
    37 "
    38     node for parse-trees, representing primaries (variables & literals)
    38     node for parse-trees, representing primaries (variables & literals)
    39 "
    39 "
    40 !
       
    41 
       
    42 version
       
    43     ^ '$Header: /cvs/stx/stx/libcomp/PrimaryNode.st,v 1.13 1995-11-23 02:14:13 cg Exp $'
       
    44 ! !
    40 ! !
    45 
    41 
    46 !PrimaryNode methodsFor:'accessing'!
    42 !PrimaryNode methodsFor:'accessing'!
    47 
    43 
    48 value
    44 value
    90     "return true, if this is a node for a primary (i.e. non-send)"
    86     "return true, if this is a node for a primary (i.e. non-send)"
    91 
    87 
    92     ^ true
    88     ^ true
    93 ! !
    89 ! !
    94 
    90 
       
    91 !PrimaryNode class methodsFor:'documentation'!
       
    92 
       
    93 version
       
    94     ^ '$Header: /cvs/stx/stx/libcomp/PrimaryNode.st,v 1.14 1995-12-03 12:15:02 cg Exp $'
       
    95 ! !