ProgramNode.st
changeset 2211 73488e248b6c
parent 1345 aee1783088d0
equal deleted inserted replaced
2210:0c4b63e4a841 2211:73488e248b6c
       
     1 "
       
     2  COPYRIGHT (c) 2002 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
     1 "{ Package: 'stx:libcomp' }"
    12 "{ Package: 'stx:libcomp' }"
     2 
    13 
     3 ParseNode subclass:#ProgramNode
    14 ParseNode subclass:#ProgramNode
     4 	instanceVariableNames:''
    15 	instanceVariableNames:''
     5 	classVariableNames:''
    16 	classVariableNames:''
     6 	poolDictionaries:''
    17 	poolDictionaries:''
     7 	category:'System-Compiler ST-80-compatibility'
    18 	category:'System-Compiler ST-80-compatibility'
     8 !
    19 !
     9 
    20 
       
    21 !ProgramNode class methodsFor:'documentation'!
       
    22 
       
    23 copyright
       
    24 "
       
    25  COPYRIGHT (c) 2002 by eXept Software AG
       
    26               All Rights Reserved
       
    27 
       
    28  This software is furnished under a license and may be used
       
    29  only in accordance with the terms of that license and with the
       
    30  inclusion of the above copyright notice.   This software may not
       
    31  be provided or otherwise made available to, or used by, any
       
    32  other person.  No title to or ownership of the software is
       
    33  hereby transferred.
       
    34 "
       
    35 ! !
    10 
    36 
    11 !ProgramNode class methodsFor:'documentation'!
    37 !ProgramNode class methodsFor:'documentation'!
    12 
    38 
    13 version
    39 version
    14     ^ '$Header: /cvs/stx/stx/libcomp/ProgramNode.st,v 1.1 2002-11-26 09:12:38 cg Exp $'
    40     ^ '$Header: /cvs/stx/stx/libcomp/ProgramNode.st,v 1.2 2009-09-29 20:08:14 cg Exp $'
       
    41 !
       
    42 
       
    43 version_CVS
       
    44     ^ '$Header: /cvs/stx/stx/libcomp/ProgramNode.st,v 1.2 2009-09-29 20:08:14 cg Exp $'
    15 ! !
    45 ! !