ParseNode.st
changeset 1046 8e5818442eb9
parent 1044 03b2cc4a5d5f
child 1056 b1a8d2b2a0ab
equal deleted inserted replaced
1045:ee448a958d19 1046:8e5818442eb9
    12 
    12 
    13 "{ Package: 'stx:libcomp' }"
    13 "{ Package: 'stx:libcomp' }"
    14 
    14 
    15 Object subclass:#ParseNode
    15 Object subclass:#ParseNode
    16 	instanceVariableNames:'type comments parenthized'
    16 	instanceVariableNames:'type comments parenthized'
    17 	classVariableNames:'NewCodeSet'
    17 	classVariableNames:''
    18 	poolDictionaries:''
    18 	poolDictionaries:''
    19 	category:'System-Compiler-Support'
    19 	category:'System-Compiler-Support'
    20 !
    20 !
    21 
    21 
    22 !ParseNode class methodsFor:'documentation'!
    22 !ParseNode class methodsFor:'documentation'!
   265 ! !
   265 ! !
   266 
   266 
   267 !ParseNode class methodsFor:'documentation'!
   267 !ParseNode class methodsFor:'documentation'!
   268 
   268 
   269 version
   269 version
   270     ^ '$Header: /cvs/stx/stx/libcomp/ParseNode.st,v 1.28 2000-06-17 17:20:22 cg Exp $'
   270     ^ '$Header: /cvs/stx/stx/libcomp/ParseNode.st,v 1.29 2000-06-19 12:03:02 cg Exp $'
   271 ! !
   271 ! !