ProgramNode.st
author Claus Gittinger <cg@exept.de>
Thu, 30 May 2019 12:03:06 +0200
changeset 4425 87133d993838
parent 2211 73488e248b6c
permissions -rw-r--r--
#REFACTORING by cg class: Parser refactoring and commenting added: #inlineObjectClassFor: comment/format in: #qualifiedNameFrom: changed: #literalInlineObjectFor: #qualifiedNameOrInlineObject

"
 COPYRIGHT (c) 2002 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
"{ Package: 'stx:libcomp' }"

ParseNode subclass:#ProgramNode
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'System-Compiler ST-80-compatibility'
!

!ProgramNode class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 2002 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
! !

!ProgramNode class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libcomp/ProgramNode.st,v 1.2 2009-09-29 20:08:14 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/libcomp/ProgramNode.st,v 1.2 2009-09-29 20:08:14 cg Exp $'
! !