ParseNode.st
changeset 1044 03b2cc4a5d5f
parent 914 e67e983a8897
child 1046 8e5818442eb9
equal deleted inserted replaced
1043:08ad8eb7532d 1044:03b2cc4a5d5f
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     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 "{ Package: 'stx:libcomp' }"
       
    14 
    13 Object subclass:#ParseNode
    15 Object subclass:#ParseNode
    14 	instanceVariableNames:'type comments parenthized'
    16 	instanceVariableNames:'type comments parenthized'
    15 	classVariableNames:''
    17 	classVariableNames:'NewCodeSet'
    16 	poolDictionaries:''
    18 	poolDictionaries:''
    17 	category:'System-Compiler-Support'
    19 	category:'System-Compiler-Support'
    18 !
    20 !
    19 
    21 
    20 !ParseNode class methodsFor:'documentation'!
    22 !ParseNode class methodsFor:'documentation'!
   263 ! !
   265 ! !
   264 
   266 
   265 !ParseNode class methodsFor:'documentation'!
   267 !ParseNode class methodsFor:'documentation'!
   266 
   268 
   267 version
   269 version
   268     ^ '$Header: /cvs/stx/stx/libcomp/ParseNode.st,v 1.27 1999-07-15 19:42:42 cg Exp $'
   270     ^ '$Header: /cvs/stx/stx/libcomp/ParseNode.st,v 1.28 2000-06-17 17:20:22 cg Exp $'
   269 ! !
   271 ! !