ProgramNode.st
author Jan Vrany <jan.vrany@labware.com>
Thu, 27 Oct 2022 14:53:59 +0100
branchjv
changeset 4735 3b11fb3ede98
parent 2211 73488e248b6c
permissions -rw-r--r--
Allow single underscore as method / block argument and temporaries This commit is a follow up for 38b221e.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2211
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
     1
"
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
     2
 COPYRIGHT (c) 2002 by eXept Software AG
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
     3
              All Rights Reserved
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
     4
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
     5
 This software is furnished under a license and may be used
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
     6
 only in accordance with the terms of that license and with the
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
     8
 be provided or otherwise made available to, or used by, any
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
     9
 other person.  No title to or ownership of the software is
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
    10
 hereby transferred.
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
    11
"
1345
aee1783088d0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libcomp' }"
aee1783088d0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
aee1783088d0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
ParseNode subclass:#ProgramNode
aee1783088d0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
aee1783088d0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
aee1783088d0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
aee1783088d0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'System-Compiler ST-80-compatibility'
aee1783088d0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
aee1783088d0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
2211
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
    21
!ProgramNode class methodsFor:'documentation'!
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
    22
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
    23
copyright
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
    24
"
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
    25
 COPYRIGHT (c) 2002 by eXept Software AG
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
    26
              All Rights Reserved
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
    27
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
    28
 This software is furnished under a license and may be used
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
    29
 only in accordance with the terms of that license and with the
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
    31
 be provided or otherwise made available to, or used by, any
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
    32
 other person.  No title to or ownership of the software is
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
    33
 hereby transferred.
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
    34
"
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
    35
! !
1345
aee1783088d0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
aee1783088d0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
!ProgramNode class methodsFor:'documentation'!
aee1783088d0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
aee1783088d0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
version
2211
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
    40
    ^ '$Header: /cvs/stx/stx/libcomp/ProgramNode.st,v 1.2 2009-09-29 20:08:14 cg Exp $'
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
    41
!
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
    42
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
    43
version_CVS
73488e248b6c added: #copyright
Claus Gittinger <cg@exept.de>
parents: 1345
diff changeset
    44
    ^ '$Header: /cvs/stx/stx/libcomp/ProgramNode.st,v 1.2 2009-09-29 20:08:14 cg Exp $'
1345
aee1783088d0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
! !