PrimaryNode.st
changeset 261 0372e948ca2d
parent 148 ef0e604209ec
child 263 3b21d0991eff
equal deleted inserted replaced
260:b881b17d0da6 261:0372e948ca2d
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
    12 
    13 ParseNode subclass:#PrimaryNode
    13 ParseNode subclass:#PrimaryNode
    14 	 instanceVariableNames:'value'
    14 	instanceVariableNames:'value'
    15 	 classVariableNames:''
    15 	classVariableNames:''
    16 	 poolDictionaries:''
    16 	poolDictionaries:''
    17 	 category:'System-Compiler-Support'
    17 	category:'System-Compiler-Support'
    18 !
    18 !
    19 
    19 
    20 !PrimaryNode class methodsFor:'documentation'!
    20 !PrimaryNode class methodsFor:'documentation'!
    21 
    21 
    22 copyright
    22 copyright
    34 !
    34 !
    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     This is a helper class for the compiler.
    39 "
    40 "
    40 ! !
    41 ! !
    41 
    42 
    42 !PrimaryNode methodsFor:'accessing'!
    43 !PrimaryNode methodsFor:'accessing'!
    43 
    44 
    89 ! !
    90 ! !
    90 
    91 
    91 !PrimaryNode class methodsFor:'documentation'!
    92 !PrimaryNode class methodsFor:'documentation'!
    92 
    93 
    93 version
    94 version
    94     ^ '$Header: /cvs/stx/stx/libcomp/PrimaryNode.st,v 1.14 1995-12-03 12:15:02 cg Exp $'
    95     ^ '$Header: /cvs/stx/stx/libcomp/PrimaryNode.st,v 1.15 1996-04-25 11:13:39 cg Exp $'
    95 ! !
    96 ! !