Variable.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 Object subclass:#Variable
    13 Object subclass:#Variable
    14 	 instanceVariableNames:'value name used'
    14 	instanceVariableNames:'value name used'
    15 	 classVariableNames:''
    15 	classVariableNames:''
    16 	 poolDictionaries:''
    16 	poolDictionaries:''
    17 	 category:'System-Compiler-Support'
    17 	category:'System-Compiler-Support'
    18 !
    18 !
    19 
    19 
    20 !Variable class methodsFor:'documentation'!
    20 !Variable 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 variables
    38     node for parse-trees, representing variables
       
    39     This is a helper class for the compiler.
    39 "
    40 "
    40 ! !
    41 ! !
    41 
    42 
    42 !Variable class methodsFor:'instance creation'!
    43 !Variable class methodsFor:'instance creation'!
    43 
    44 
    91 ! !
    92 ! !
    92 
    93 
    93 !Variable class methodsFor:'documentation'!
    94 !Variable class methodsFor:'documentation'!
    94 
    95 
    95 version
    96 version
    96     ^ '$Header: /cvs/stx/stx/libcomp/Variable.st,v 1.11 1995-12-03 12:14:22 cg Exp $'
    97     ^ '$Header: /cvs/stx/stx/libcomp/Variable.st,v 1.12 1996-04-25 11:14:57 cg Exp $'
    97 ! !
    98 ! !