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