ProgramNodeEnumerator.st
author Jan Vrany <jan.vrany@labware.com>
Thu, 27 Oct 2022 14:53:59 +0100
branchjv
changeset 4735 3b11fb3ede98
parent 4528 fa1083b5468d
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:
4528
fa1083b5468d #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 3837
diff changeset
     1
"{ Encoding: utf8 }"
fa1083b5468d #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 3837
diff changeset
     2
1570
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
     3
"
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
     4
 COPYRIGHT (c) 2004 by eXept Software AG
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
     5
              All Rights Reserved
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
     6
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
     7
 This software is furnished under a license and may be used
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
     8
 only in accordance with the terms of that license and with the
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
    10
 be provided or otherwise made available to, or used by, any
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
    11
 other person.  No title to or ownership of the software is
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
    12
 hereby transferred.
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
    13
"
1146
e3e399a85be0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 568
diff changeset
    14
"{ Package: 'stx:libcomp' }"
e3e399a85be0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 568
diff changeset
    15
3837
7002a7a738b6 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2585
diff changeset
    16
"{ NameSpace: Smalltalk }"
7002a7a738b6 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2585
diff changeset
    17
538
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
Object subclass:#ProgramNodeEnumerator
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	instanceVariableNames:''
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	classVariableNames:''
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
	poolDictionaries:''
568
821d72c3248d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 538
diff changeset
    22
	category:'System-Compiler'
538
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
!ProgramNodeEnumerator class methodsFor:'documentation'!
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
1570
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
    27
copyright
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
    28
"
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
    29
 COPYRIGHT (c) 2004 by eXept Software AG
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
    30
              All Rights Reserved
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
    31
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
    32
 This software is furnished under a license and may be used
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
    33
 only in accordance with the terms of that license and with the
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
    34
 inclusion of the above copyright notice.   This software may not
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
    35
 be provided or otherwise made available to, or used by, any
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
    36
 other person.  No title to or ownership of the software is
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
    37
 hereby transferred.
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
    38
"
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
    39
!
8ce7594e9b55 copyright
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
    40
538
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
documentation
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
"
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
    This is a pure mimicri class.
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
    It is not used by ST/X, but provided to support limited
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
    compatibility for applications which walk codetrees,
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
    knowing internals of ST-80's compiler class hierarchy.
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
    This classes protocol is not (not meant to be) fully covering
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
    the corresponding ST-80's classes protocol. It maps ST-80 messages
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
    to corresponding ST/X messages (as far as possible).
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
    This class was added to allow for the PD goody CodeReview to be filed
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
    into ST/X.
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
    NO WARRANTY and GUARANTEE; this class may be removed without notice.
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
"
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
! !
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
!ProgramNodeEnumerator class methodsFor:'instance creation'!
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
new
1623
e0640998c38b proper #initialize
Claus Gittinger <cg@exept.de>
parents: 1591
diff changeset
    62
    ^ self basicNew initialize
538
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
    "Created: 19.6.1997 / 16:52:06 / cg"
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
! !
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
1591
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    67
!ProgramNodeEnumerator methodsFor:'enumeration callbacks'!
538
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
doAssignment:aNode variable:var value:val
1591
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    70
    self doNode:val.
538
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
!
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
doBlock:aNode arguments:args body:seq
1591
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    74
    seq notNil ifTrue:[
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    75
        self doNode:seq.
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    76
    ]
538
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    77
!
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    79
doCascade:aNode receiver:rcvr messages:msgs
1591
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    80
    msgs do:[:eachMessage | 
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    81
        self doNode:eachMessage
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    82
    ].
538
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    83
!
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    84
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    85
doLiteral:aNode value:lit
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    86
!
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    87
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    88
doMessage:aNode receiver:rcvr selector:sel arguments:args
1591
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    89
    self doNode:rcvr.
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    90
    args do:[:eachArg |
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    91
        self doNode:eachArg
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    92
    ].
538
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    93
!
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    94
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    95
doMethod:aNode selector:sel primitive:prim block:block
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    96
    ^ self subclassResponsibility
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    97
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    98
    "Created: 19.6.1997 / 16:50:45 / cg"
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    99
    "Modified: 19.6.1997 / 16:52:54 / cg"
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   100
!
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   101
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   102
doParameter:aNode variable:var type:type
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   103
    ^ self subclassResponsibility
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
    "Created: 19.6.1997 / 16:50:50 / cg"
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
    "Modified: 19.6.1997 / 16:53:01 / cg"
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
!
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
1585
63f4b846bf3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1570
diff changeset
   109
doPrimitive:aNode code:code primitiveIndex:primNumber
63f4b846bf3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1570
diff changeset
   110
!
63f4b846bf3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1570
diff changeset
   111
538
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   112
doReturn:aNode value:value
1591
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   113
    self doNode:value
538
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   114
!
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   115
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   116
doSequence:aNode temporaries:temps statements:stats
1591
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   117
    stats do:[:each | self doNode:each ].
538
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   118
!
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   119
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   120
doVariable:aNode name:nameString
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   121
! !
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   122
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
!ProgramNodeEnumerator methodsFor:'private'!
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
collectNodes:nodeList
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   126
    ^ nodeList collect:[:node | self doNode:node]
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   127
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
    "Created: 19.6.1997 / 16:51:31 / cg"
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
    "Modified: 19.6.1997 / 16:53:32 / cg"
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   130
!
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   131
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   132
doNode:aNode
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   133
    ^ aNode nodeDo:self
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   134
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   135
    "Modified: 19.6.1997 / 16:53:47 / cg"
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   136
!
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   137
1591
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   138
doNodeList:firstNode
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   139
    |node|
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   140
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   141
    node := firstNode.
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   142
    [ node notNil ] whileTrue:[
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   143
        self doNode:node.
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   144
        node := node nextStatement.
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   145
    ]
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   146
!
dd892bb6efa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   147
538
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   148
doNodes:nodeList
4528
fa1083b5468d #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 3837
diff changeset
   149
    "cg: is it required to return the nodeList, or just sloppy programming?"
538
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   150
    ^ nodeList do:[:node | self doNode:node]
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   151
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   152
    "Created: 19.6.1997 / 16:51:41 / cg"
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   153
    "Modified: 19.6.1997 / 16:53:55 / cg"
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   154
!
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   155
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   156
doType:aType
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   157
    ^ aType
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   158
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   159
    "Modified: 19.6.1997 / 16:54:05 / cg"
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   160
! !
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   161
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   162
!ProgramNodeEnumerator class methodsFor:'documentation'!
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   163
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   164
version
3837
7002a7a738b6 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2585
diff changeset
   165
    ^ '$Header$'
7002a7a738b6 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2585
diff changeset
   166
!
7002a7a738b6 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2585
diff changeset
   167
7002a7a738b6 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2585
diff changeset
   168
version_CVS
7002a7a738b6 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2585
diff changeset
   169
    ^ '$Header$'
538
54f8491a9ea3 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   170
! !
3837
7002a7a738b6 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2585
diff changeset
   171