Block.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 17 Dec 2013 20:21:42 +0100
branchjv
changeset 18113 92b4242b2b0b
parent 18077 5844a3bcdd52
parent 15850 3b51942600ce
child 18120 e3a375d5f6a8
permissions -rw-r--r--
Merged 0d7ac9096619 and c3c4112651c4 (branch default - CVS HEAD)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     1
"
5
67342904af11 *** empty log message ***
claus
parents: 3
diff changeset
     2
 COPYRIGHT (c) 1989 by Claus Gittinger
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
     3
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     4
a27a279701f8 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
"
5349
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
    12
"{ Package: 'stx:libbasic' }"
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
    13
4299
2028db93d182 comment
Claus Gittinger <cg@exept.de>
parents: 3688
diff changeset
    14
CompiledCode variableSubclass:#Block
1181
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
    15
	instanceVariableNames:'home nargs sourcePos initialPC'
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
    16
	classVariableNames:'InvalidNewSignal'
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
    17
	poolDictionaries:''
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
    18
	category:'Kernel-Methods'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    19
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    20
1773
442d1b73ecb9 no longer allow Blocks with a dynamic-bit to be created
Claus Gittinger <cg@exept.de>
parents: 1672
diff changeset
    21
!Block class methodsFor:'documentation'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    22
92
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    23
copyright
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    24
"
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    25
 COPYRIGHT (c) 1989 by Claus Gittinger
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
    26
	      All Rights Reserved
92
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    27
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    28
 This software is furnished under a license and may be used
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    29
 only in accordance with the terms of that license and with the
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    31
 be provided or otherwise made available to, or used by, any
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    32
 other person.  No title to or ownership of the software is
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    33
 hereby transferred.
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    34
"
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    35
!
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
    36
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    37
documentation
a27a279701f8 Initial revision
claus
parents:
diff changeset
    38
"
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    39
    Blocks are pieces of executable code which can be evaluated by sending
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    40
    them a value-message (''value'', ''value:'', ''value:value:'' etc).
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    41
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
    42
    In smalltalk, Blocks provide the basic (and heavily used) mechanism
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
    43
    for looping, enumerating collection elements, visitors, exception
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
    44
    handling, unwinding, delayed execution and processes.
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
    45
1254
48c2748b5197 commentary
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
    46
    Blocks are never created explicitely; the only creation
48c2748b5197 commentary
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
    47
    is done by the compilers, when some sourceCode is compiled to either
48c2748b5197 commentary
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
    48
    machine or byteCode.
48c2748b5197 commentary
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
    49
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    50
    Blocks with arguments need a message of type ''value:arg1 ... value:argn''
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    51
    for evaluation; the number of arguments passed when evaluating must match
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    52
    the number of arguments the block was declared with otherwise an error is
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    53
    raised. Blocks without args need a ''value'' message for evaluation.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    54
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
    55
    Blocks keep a reference to the context where the block was declared -
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    56
    this allows blocks to access the methods arguments and/or variables.
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
    57
    This is still true after the method has returned - since the
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    58
    block keeps this reference, the methods context will NOT die in this case.
222
85fee82884dd commenting
claus
parents: 216
diff changeset
    59
    (i.e. Blocks are closures in Smalltalk/X)
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    60
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    61
    A return (via ^-statement) out of a block will force a return from the
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    62
    blocks method context (if it is still living) - this make the implementation
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    63
    of long-jumps and control structures possible.
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
    64
    (If the method is not alive (i.e. has already returned), a return out of the 
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
    65
     block will trigger an error)
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    66
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    67
    Long-jump is done by defining a catchBlock as ''[^ self]''
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    68
    somewhere up in the calling-tree. Then, to do the long-jump from out of some 
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    69
    deeply nested method, simply do: ''catchBlock value''.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    70
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
    71
    [Instance variables:]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    72
222
85fee82884dd commenting
claus
parents: 216
diff changeset
    73
      home        <Context>         the context where this block was created (i.e. defined)
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    74
				    this may be a blockContext or a methodContext
222
85fee82884dd commenting
claus
parents: 216
diff changeset
    75
      nargs       <SmallInteger>    the number of arguments the block expects
85fee82884dd commenting
claus
parents: 216
diff changeset
    76
      sourcePos   <SmallInteger>    the character position of its source, in chars
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    77
				    relative to methods source beginning
222
85fee82884dd commenting
claus
parents: 216
diff changeset
    78
      initialPC   <SmallInteger>    the start position within the byteCode
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    79
				    for compiled blocks, this is nil.
222
85fee82884dd commenting
claus
parents: 216
diff changeset
    80
85fee82884dd commenting
claus
parents: 216
diff changeset
    81
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
    82
    [Class variables:]
222
85fee82884dd commenting
claus
parents: 216
diff changeset
    83
85fee82884dd commenting
claus
parents: 216
diff changeset
    84
      InvalidNewSignal              raised if a Block is tried to be created
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    85
				    with new (which is not allowed).
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    86
				    Only the VM is allowed to create Blocks.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    87
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
    88
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
    89
    NOTICE: layout known by runtime system and compiler - do not change
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
    90
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
    91
    [author:]
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    92
	Claus Gittinger
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
    93
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
    94
    [see also:]
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    95
	Process Context
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    96
	Collection
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
    97
	( contexts. blocks & unwinding : programming/contexts.html)
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    98
"
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
    99
!
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   100
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   101
examples
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   102
"
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   103
    define a block and evaluate it:
14143
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   104
                                                                        [exBegin]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   105
        |b|
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   106
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   107
        b := [ Transcript showCR:'hello' ].
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   108
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   109
        Transcript showCR:'now evaluating the block ...'.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   110
        b value.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   111
                                                                        [exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   112
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   113
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   114
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   115
    even here, blocks are involved: 
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   116
    (although, the compiler optimizes things if possible)
14143
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   117
                                                                        [exBegin]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   118
        Transcript showCR:'now evaluating one of two blocks ...'.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   119
        1 > 4 ifTrue:[
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   120
            Transcript showCR:'foo'
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   121
        ] ifFalse:[
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   122
            Transcript showCR:'bar'
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   123
        ]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   124
                                                                        [exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   125
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   126
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   127
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   128
    here things become obvious:
14143
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   129
                                                                        [exBegin]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   130
        |yesBlock noBlock|
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   131
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   132
        yesBlock := [ Transcript showCR:'foo' ].
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   133
        noBlock := [ Transcript showCR:'bar' ].
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   134
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   135
        Transcript showCR:'now evaluating one of two blocks ...'.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   136
        1 > 4 ifTrue:yesBlock
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   137
              ifFalse:noBlock
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   138
                                                                        [exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   139
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   140
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   141
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   142
    simple loops:
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   143
      not very objectOriented:
14143
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   144
                                                                        [exBegin]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   145
        |i|
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   146
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   147
        i := 1.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   148
        [i < 10] whileTrue:[
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   149
            Transcript showCR:i.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   150
            i := i + 1
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   151
        ]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   152
                                                                        [exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   153
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   154
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   155
      using integer protocol:
14143
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   156
                                                                        [exBegin]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   157
        1 to:10 do:[:i |
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   158
            Transcript showCR:i.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   159
        ]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   160
                                                                        [exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   161
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   162
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   163
      interval protocol:
14143
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   164
                                                                        [exBegin]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   165
        (1 to:10) do:[:i |
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   166
            Transcript showCR:i.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   167
        ]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   168
                                                                        [exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   169
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   170
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   171
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   172
    looping over collections:
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   173
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   174
      bad code:
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   175
      (only works with numeric-indexable collections)
14143
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   176
                                                                        [exBegin]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   177
        |i coll|
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   178
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   179
        coll := #(9 8 7 6 5).
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   180
        i := 1.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   181
        [i <= coll size] whileTrue:[
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   182
            Transcript showCR:(coll at:i).
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   183
            i := i + 1.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   184
        ]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   185
                                                                        [exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   186
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   187
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   188
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   189
      just as bad (well, marginally better ;-):
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   190
      (only works with numeric-indexable collections)
14143
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   191
                                                                        [exBegin]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   192
        |coll|   
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   193
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   194
        coll := #(9 8 7 6 5).
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   195
        1 to:coll size do:[:i |
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   196
            Transcript showCR:(coll at:i).
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   197
        ]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   198
                                                                        [exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   199
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   200
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   201
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   202
      the smalltalk way:
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   203
      (works with any collection)
14143
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   204
                                                                        [exBegin]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   205
        |coll|   
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   206
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   207
        coll := #(9 8 7 6 5).
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   208
        coll do:[:element |
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   209
            Transcript showCR:element.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   210
        ]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   211
                                                                        [exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   212
        
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   213
    Rule: use enumeration protocol of the collection instead of
14143
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   214
          manually indexing it. [with few exceptions]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   215
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   216
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   217
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   218
    processes:
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   219
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   220
      forking a lightweight process (thread):
14143
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   221
                                                                        [exBegin]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   222
        [
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   223
            Transcript showCR:'waiting ...'.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   224
            Delay waitForSeconds:2.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   225
            Transcript showCR:'here I am'.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   226
        ] fork
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   227
                                                                        [exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   228
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   229
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   230
        
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   231
      some with low prio:
14143
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   232
                                                                        [exBegin]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   233
        [
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   234
            Transcript showCR:'computing ...'.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   235
            10000 factorial.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   236
            Transcript showCR:'here I am'.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   237
        ] forkAt:(Processor userBackgroundPriority)
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   238
                                                                        [exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   239
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   240
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   241
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   242
    handling exceptions:
14143
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   243
                                                                        [exBegin]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   244
        Error handle:[:ex |
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   245
            Transcript showCR:'exception handler forces return'.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   246
            ex return
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   247
        ] do:[
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   248
            Transcript showCR:'now, doing something bad ...'.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   249
            1 / 0.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   250
            Transcript showCR:'not reached'
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   251
        ]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   252
                                                                        [exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   253
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   254
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   255
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   256
    performing cleanup actions:
14143
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   257
                                                                        [exBegin]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   258
        Error handle:[:ex |
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   259
            Transcript showCR:'exception handler forces return'.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   260
            ex return
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   261
        ] do:[
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   262
            [
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   263
                Transcript showCR:'doing something bad ...'.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   264
                1 / 0.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   265
                Transcript showCR:'not reached'
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   266
            ] ifCurtailed:[
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   267
                Transcript showCR:'cleanup'
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   268
            ]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   269
        ]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   270
                                                                        [exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   271
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   272
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   273
    delayed execution (visitor pattern):
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   274
    (looking carefully into the example, 
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1265
diff changeset
   275
     C/C++ programmers may raise their eyes ;-)
14143
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   276
                                                                        [exBegin]
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   277
        |showBlock countBlock 
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   278
         howMany 
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   279
         top panel b1 b2|
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   280
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   281
        howMany := 0.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   282
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   283
        showBlock := [ Transcript showCR:howMany ].
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   284
        countBlock := [ howMany := howMany + 1 ].
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   285
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   286
        top := StandardSystemView extent:200@200.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   287
        panel := HorizontalPanelView origin:0.0@0.0 corner:1.0@1.0 in:top.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   288
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   289
        b1 := Button label:'count up' in:panel.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   290
        b1 action:countBlock.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   291
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   292
        b2 := Button label:'show value' in:panel.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   293
        b2 action:showBlock.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   294
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   295
        top open.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   296
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   297
        Transcript showCR:'new process started;'.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   298
        Transcript showCR:'notice: the blocks can still access the'.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   299
        Transcript showCR:'        howMany local variable.'.
5b9828d29920 changed: #examples
Stefan Vogel <sv@exept.de>
parents: 14139
diff changeset
   300
                                                                        [exEnd]
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   301
"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   302
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   303
1773
442d1b73ecb9 no longer allow Blocks with a dynamic-bit to be created
Claus Gittinger <cg@exept.de>
parents: 1672
diff changeset
   304
!Block class methodsFor:'initialization'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   305
a27a279701f8 Initial revision
claus
parents:
diff changeset
   306
initialize
1254
48c2748b5197 commentary
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
   307
    "create signals raised by various errors"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   308
48
9f68393bea3c *** empty log message ***
claus
parents: 46
diff changeset
   309
    InvalidNewSignal isNil ifTrue:[
7092
630807cd320f Convert Object>>errorSignal -> Error
Stefan Vogel <sv@exept.de>
parents: 6981
diff changeset
   310
        InvalidNewSignal := Error newSignalMayProceed:false.
630807cd320f Convert Object>>errorSignal -> Error
Stefan Vogel <sv@exept.de>
parents: 6981
diff changeset
   311
        InvalidNewSignal nameClass:self message:#invalidNewSignal.
630807cd320f Convert Object>>errorSignal -> Error
Stefan Vogel <sv@exept.de>
parents: 6981
diff changeset
   312
        InvalidNewSignal notifierString:'blocks are only created by the system'.
48
9f68393bea3c *** empty log message ***
claus
parents: 46
diff changeset
   313
    ]
1254
48c2748b5197 commentary
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
   314
48c2748b5197 commentary
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
   315
    "Modified: 22.4.1996 / 16:34:20 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   316
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   317
1773
442d1b73ecb9 no longer allow Blocks with a dynamic-bit to be created
Claus Gittinger <cg@exept.de>
parents: 1672
diff changeset
   318
!Block class methodsFor:'instance creation'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   319
2542
555749f035f4 need stackSize when creating blocks.
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
   320
byteCode:bCode numArgs:numArgs numStack:nStack sourcePosition:sourcePos initialPC:initialPC literals:literals
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   321
    "create a new cheap (homeless) block.
222
85fee82884dd commenting
claus
parents: 216
diff changeset
   322
     Not for public use - this is a special hook for the compiler."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   323
5766
64d22218e98b must ensure that nArgs and nVar flag setting is correct
Claus Gittinger <cg@exept.de>
parents: 5744
diff changeset
   324
    ^ self
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   325
	byteCode:bCode numArgs:numArgs numVars:0 numStack:nStack sourcePosition:sourcePos initialPC:initialPC literals:literals
5766
64d22218e98b must ensure that nArgs and nVar flag setting is correct
Claus Gittinger <cg@exept.de>
parents: 5744
diff changeset
   326
!
64d22218e98b must ensure that nArgs and nVar flag setting is correct
Claus Gittinger <cg@exept.de>
parents: 5744
diff changeset
   327
64d22218e98b must ensure that nArgs and nVar flag setting is correct
Claus Gittinger <cg@exept.de>
parents: 5744
diff changeset
   328
byteCode:bCode numArgs:numArgs numVars:numVars numStack:nStack sourcePosition:sourcePos initialPC:initialPC literals:literals
64d22218e98b must ensure that nArgs and nVar flag setting is correct
Claus Gittinger <cg@exept.de>
parents: 5744
diff changeset
   329
    "create a new cheap (homeless) block.
64d22218e98b must ensure that nArgs and nVar flag setting is correct
Claus Gittinger <cg@exept.de>
parents: 5744
diff changeset
   330
     Not for public use - this is a special hook for the compiler."
64d22218e98b must ensure that nArgs and nVar flag setting is correct
Claus Gittinger <cg@exept.de>
parents: 5744
diff changeset
   331
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   332
    |newBlock|
a27a279701f8 Initial revision
claus
parents:
diff changeset
   333
1493
33e226c7d187 Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   334
    newBlock := (super basicNew:(literals size)) 
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   335
			   byteCode:bCode
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   336
			   numArgs:numArgs
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   337
			   numVars:numVars
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   338
			   numStack:nStack
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   339
		     sourcePosition:sourcePos
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   340
			  initialPC:initialPC
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   341
			   literals:literals.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   342
    ^ newBlock
1493
33e226c7d187 Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   343
33e226c7d187 Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   344
    "Modified: 24.6.1996 / 12:36:48 / stefan"
2542
555749f035f4 need stackSize when creating blocks.
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
   345
    "Created: 13.4.1997 / 00:04:09 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   346
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   347
22
847106305963 *** empty log message ***
claus
parents: 11
diff changeset
   348
new
4299
2028db93d182 comment
Claus Gittinger <cg@exept.de>
parents: 3688
diff changeset
   349
    "catch creation of blocks - only the system creates blocks.
2028db93d182 comment
Claus Gittinger <cg@exept.de>
parents: 3688
diff changeset
   350
     If you really need a block (assuming, you are some compiler),
2028db93d182 comment
Claus Gittinger <cg@exept.de>
parents: 3688
diff changeset
   351
     use basicNew and setup the instance carefully"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   352
128
c50a2157883e return value of signal raise
claus
parents: 103
diff changeset
   353
    ^ InvalidNewSignal raise.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   354
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   355
22
847106305963 *** empty log message ***
claus
parents: 11
diff changeset
   356
new:size
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   357
    "catch creation of blocks - only the system creates blocks"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   358
128
c50a2157883e return value of signal raise
claus
parents: 103
diff changeset
   359
    ^ InvalidNewSignal raise.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   360
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   361
1773
442d1b73ecb9 no longer allow Blocks with a dynamic-bit to be created
Claus Gittinger <cg@exept.de>
parents: 1672
diff changeset
   362
!Block class methodsFor:'queries'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   363
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   364
isBuiltInClass
1264
8d916aa63bce commentary
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
   365
    "return true if this class is known by the run-time-system.
8d916aa63bce commentary
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
   366
     Here, true is returned for myself, false for subclasses."
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   367
1181
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   368
    ^ self == Block
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   369
1264
8d916aa63bce commentary
Claus Gittinger <cg@exept.de>
parents: 1254
diff changeset
   370
    "Modified: 23.4.1996 / 15:55:58 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   371
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   372
15850
3b51942600ce class: Block
Stefan Vogel <sv@exept.de>
parents: 15532
diff changeset
   373
3b51942600ce class: Block
Stefan Vogel <sv@exept.de>
parents: 15532
diff changeset
   374
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7257
diff changeset
   375
!Block methodsFor:'Compatibility-ANSI'!
5349
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   376
5944
abd51a8a6ca1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5931
diff changeset
   377
argumentCount
7352
c742fca7864d comment in numArgs
Claus Gittinger <cg@exept.de>
parents: 7323
diff changeset
   378
    "VisualAge/ANSI compatibility: alias for #numArgs.
5944
abd51a8a6ca1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5931
diff changeset
   379
     return the number of arguments I expect for evaluation"
abd51a8a6ca1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5931
diff changeset
   380
abd51a8a6ca1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5931
diff changeset
   381
    ^ nargs
abd51a8a6ca1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5931
diff changeset
   382
abd51a8a6ca1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5931
diff changeset
   383
    "Created: 15.11.1996 / 11:22:02 / cg"
abd51a8a6ca1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5931
diff changeset
   384
!
abd51a8a6ca1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5931
diff changeset
   385
5349
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   386
ensure:aBlock
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   387
    "evaluate the receiver and return its result.
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   388
     After evaluation, also evaluate aBlock but ignore its result.
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   389
     aBlock is also evaluated in case of abnormal termination.
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   390
     (the same as #valueNowOrOnUnwindDo:)"
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   391
5666
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   392
    <exception: #unwind>
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   393
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   394
    |v|
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   395
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   396
    v := self value.       "the real logic is in Context>>unwind"
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   397
    thisContext unmarkForUnwind.
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   398
    aBlock value.
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   399
    ^ v
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   400
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   401
    "/ the above is the same as in #valueNowOrOnUnwindDo:
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   402
    "/ (actually, the previous implementation was:
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
   403
    "/ ^ self valueNowOrOnUnwindDo:aBlock
5349
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   404
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   405
    "
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   406
     [
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   407
	[
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   408
	    Transcript showCR:'one'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   409
	    Processor activeProcess terminate.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   410
	    Transcript showCR:'two'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   411
	] ensure:[
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   412
	    Transcript showCR:'three'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   413
	].
5349
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   414
     ] fork.
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   415
    "
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   416
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   417
    "
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   418
     [
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   419
	[
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   420
	    Transcript showCR:'one'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   421
	    Transcript showCR:'two'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   422
	] ensure:[
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   423
	    Transcript showCR:'three'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   424
	].
5349
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   425
     ] fork.
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   426
    "
5951
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   427
!
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   428
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   429
ifCurtailed:aBlock
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   430
    "evaluate the receiver - when some method sent within unwinds (i.e. does
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   431
     a long return), evaluate the argument, aBlock.
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   432
     This is used to make certain that cleanup actions (for example closing files etc.) are
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   433
     executed regardless of error actions.
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   434
     This is the same as #valueOnUnwindDo:"
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   435
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   436
    <exception: #unwind>
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   437
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   438
    |v|
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   439
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   440
    "/ thisContext markForUnwind. -- same as above pragma
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   441
    v := self value.       "the real logic is in Context>>unwind"
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   442
    thisContext unmarkForUnwind.
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   443
    ^ v
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   444
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   445
    "
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   446
     |s|
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   447
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   448
     s := 'Makefile' asFilename readStream.
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   449
     [
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   450
	^ self
5951
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   451
     ] ifCurtailed:[
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   452
	Transcript showCR:'closing the stream - even though a return occurred'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   453
	s close
5951
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   454
     ]
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   455
    "
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   456
    "
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   457
     [
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   458
	 |s|
5951
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   459
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   460
	 s := 'Makefile' asFilename readStream.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   461
	 [
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   462
	    Processor activeProcess terminate
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   463
	 ] ifCurtailed:[
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   464
	    Transcript showCR:'closing the stream - even though process was terminated'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   465
	    s close
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   466
	 ]
5951
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   467
     ] fork
ef7dcd567b6f added #ifCurtailed: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5944
diff changeset
   468
    "
5349
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   469
! !
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   470
8440
66d126056d3d Dolphin compatibility: #deferredValue
Stefan Vogel <sv@exept.de>
parents: 8394
diff changeset
   471
!Block methodsFor:'Compatibility-Dolphin'!
66d126056d3d Dolphin compatibility: #deferredValue
Stefan Vogel <sv@exept.de>
parents: 8394
diff changeset
   472
66d126056d3d Dolphin compatibility: #deferredValue
Stefan Vogel <sv@exept.de>
parents: 8394
diff changeset
   473
deferredValue
11957
8cb8e08f82a8 changed #deferredValue
Claus Gittinger <cg@exept.de>
parents: 11934
diff changeset
   474
    "Compatibility method - do not use in new code.
12118
41ee8ff1908e comment/format in: #deferredValue
Claus Gittinger <cg@exept.de>
parents: 11998
diff changeset
   475
     Dolphin's alias for futureValue"
8440
66d126056d3d Dolphin compatibility: #deferredValue
Stefan Vogel <sv@exept.de>
parents: 8394
diff changeset
   476
13767
138ba7e788b8 added: #deferredValueAt:
Claus Gittinger <cg@exept.de>
parents: 13517
diff changeset
   477
    ^ Future new block:self
138ba7e788b8 added: #deferredValueAt:
Claus Gittinger <cg@exept.de>
parents: 13517
diff changeset
   478
138ba7e788b8 added: #deferredValueAt:
Claus Gittinger <cg@exept.de>
parents: 13517
diff changeset
   479
    "Modified: / 04-10-2011 / 14:56:27 / cg"
138ba7e788b8 added: #deferredValueAt:
Claus Gittinger <cg@exept.de>
parents: 13517
diff changeset
   480
!
138ba7e788b8 added: #deferredValueAt:
Claus Gittinger <cg@exept.de>
parents: 13517
diff changeset
   481
138ba7e788b8 added: #deferredValueAt:
Claus Gittinger <cg@exept.de>
parents: 13517
diff changeset
   482
deferredValueAt:priority
138ba7e788b8 added: #deferredValueAt:
Claus Gittinger <cg@exept.de>
parents: 13517
diff changeset
   483
    "Compatibility method - do not use in new code.
138ba7e788b8 added: #deferredValueAt:
Claus Gittinger <cg@exept.de>
parents: 13517
diff changeset
   484
     Dolphin's alias for futureValue"
138ba7e788b8 added: #deferredValueAt:
Claus Gittinger <cg@exept.de>
parents: 13517
diff changeset
   485
138ba7e788b8 added: #deferredValueAt:
Claus Gittinger <cg@exept.de>
parents: 13517
diff changeset
   486
    ^ Future new 
138ba7e788b8 added: #deferredValueAt:
Claus Gittinger <cg@exept.de>
parents: 13517
diff changeset
   487
        priority:priority block:self
138ba7e788b8 added: #deferredValueAt:
Claus Gittinger <cg@exept.de>
parents: 13517
diff changeset
   488
138ba7e788b8 added: #deferredValueAt:
Claus Gittinger <cg@exept.de>
parents: 13517
diff changeset
   489
    "Created: / 04-10-2011 / 14:55:56 / cg"
8440
66d126056d3d Dolphin compatibility: #deferredValue
Stefan Vogel <sv@exept.de>
parents: 8394
diff changeset
   490
! !
66d126056d3d Dolphin compatibility: #deferredValue
Stefan Vogel <sv@exept.de>
parents: 8394
diff changeset
   491
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7257
diff changeset
   492
!Block methodsFor:'Compatibility-Squeak'!
5015
114243c7fd82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4896
diff changeset
   493
15089
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   494
cull: firstArg 
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   495
    "activate the receiver with one or zero arguments"
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   496
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   497
    nargs >= 1 ifTrue:[^ self value:firstArg].
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   498
    ^ self value
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   499
!
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   500
15088
70454bb2fde9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14803
diff changeset
   501
cull: firstArg cull: secondArg
15089
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   502
    "activate the receiver with two or less arguments"
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   503
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   504
    nargs >= 2 ifTrue:[^ self value:firstArg value:secondArg].
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   505
    nargs = 1 ifTrue:[^ self value:firstArg].
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   506
    ^ self value
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   507
!
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   508
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   509
cull: firstArg cull: secondArg cull: thirdArg
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   510
    "activate the receiver with three or less arguments"
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   511
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   512
    nargs >= 2 ifTrue:[
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   513
        nargs >= 3 ifTrue:[
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   514
            ^ self value:firstArg value:secondArg value:thirdArg
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   515
        ].
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   516
        ^ self value:firstArg value:secondArg
f632280a4955 class: Block
Claus Gittinger <cg@exept.de>
parents: 15088
diff changeset
   517
    ].
15088
70454bb2fde9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14803
diff changeset
   518
    nargs = 1 ifTrue:[^ self value:firstArg].
70454bb2fde9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14803
diff changeset
   519
    ^ self value
70454bb2fde9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14803
diff changeset
   520
!
70454bb2fde9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14803
diff changeset
   521
5015
114243c7fd82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4896
diff changeset
   522
ifError:handlerBlock
15119
9c0e55234953 class: Block
Claus Gittinger <cg@exept.de>
parents: 15090
diff changeset
   523
    "squeak compatibility:
9c0e55234953 class: Block
Claus Gittinger <cg@exept.de>
parents: 15090
diff changeset
   524
     Evaluate the recevier block and return its value, if no error occurs.
9c0e55234953 class: Block
Claus Gittinger <cg@exept.de>
parents: 15090
diff changeset
   525
     If an error is raised, return the value from handlerBlock.
9c0e55234953 class: Block
Claus Gittinger <cg@exept.de>
parents: 15090
diff changeset
   526
     The handlerBlock may take 0,1 or 2 args.
6159
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   527
     (1 arg  -> the exception;
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   528
      2 args -> the errorString and the erronous receiver)"
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   529
11934
6b5edbb34ad3 changed #ifError:
Claus Gittinger <cg@exept.de>
parents: 11822
diff changeset
   530
    |numArgs|
6b5edbb34ad3 changed #ifError:
Claus Gittinger <cg@exept.de>
parents: 11822
diff changeset
   531
12334
21860831a49e changed: #ifError:
Claus Gittinger <cg@exept.de>
parents: 12118
diff changeset
   532
    numArgs := handlerBlock isBlock ifTrue:[handlerBlock numArgs] ifFalse:[0].
11934
6b5edbb34ad3 changed #ifError:
Claus Gittinger <cg@exept.de>
parents: 11822
diff changeset
   533
    numArgs == 1 ifTrue:[
6b5edbb34ad3 changed #ifError:
Claus Gittinger <cg@exept.de>
parents: 11822
diff changeset
   534
        ^ self on:Error do:handlerBlock
6159
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   535
    ].
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   536
6142
702cc4a95a86 ifError: compatibility
james
parents: 5951
diff changeset
   537
    ^ self 
11934
6b5edbb34ad3 changed #ifError:
Claus Gittinger <cg@exept.de>
parents: 11822
diff changeset
   538
        on:Error 
6b5edbb34ad3 changed #ifError:
Claus Gittinger <cg@exept.de>
parents: 11822
diff changeset
   539
        do:[:ex | 
6b5edbb34ad3 changed #ifError:
Claus Gittinger <cg@exept.de>
parents: 11822
diff changeset
   540
            |errString errReceiver|
6b5edbb34ad3 changed #ifError:
Claus Gittinger <cg@exept.de>
parents: 11822
diff changeset
   541
6b5edbb34ad3 changed #ifError:
Claus Gittinger <cg@exept.de>
parents: 11822
diff changeset
   542
            numArgs == 0 ifTrue:[
6b5edbb34ad3 changed #ifError:
Claus Gittinger <cg@exept.de>
parents: 11822
diff changeset
   543
                ex return:handlerBlock value
6b5edbb34ad3 changed #ifError:
Claus Gittinger <cg@exept.de>
parents: 11822
diff changeset
   544
            ] ifFalse:[
6b5edbb34ad3 changed #ifError:
Claus Gittinger <cg@exept.de>
parents: 11822
diff changeset
   545
                errString := ex description.
6b5edbb34ad3 changed #ifError:
Claus Gittinger <cg@exept.de>
parents: 11822
diff changeset
   546
                errReceiver := ex suspendedContext receiver.
6b5edbb34ad3 changed #ifError:
Claus Gittinger <cg@exept.de>
parents: 11822
diff changeset
   547
                ex return:(handlerBlock value:errString value:errReceiver)
6b5edbb34ad3 changed #ifError:
Claus Gittinger <cg@exept.de>
parents: 11822
diff changeset
   548
            ].
6b5edbb34ad3 changed #ifError:
Claus Gittinger <cg@exept.de>
parents: 11822
diff changeset
   549
        ]
6142
702cc4a95a86 ifError: compatibility
james
parents: 5951
diff changeset
   550
702cc4a95a86 ifError: compatibility
james
parents: 5951
diff changeset
   551
    "
702cc4a95a86 ifError: compatibility
james
parents: 5951
diff changeset
   552
     |a|
702cc4a95a86 ifError: compatibility
james
parents: 5951
diff changeset
   553
702cc4a95a86 ifError: compatibility
james
parents: 5951
diff changeset
   554
     a := 0.
702cc4a95a86 ifError: compatibility
james
parents: 5951
diff changeset
   555
     [ 123 / a ] ifError:[:msg :rec | self halt]
702cc4a95a86 ifError: compatibility
james
parents: 5951
diff changeset
   556
    "
6159
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   557
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   558
    "
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   559
     |a|
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   560
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   561
     a := 0.
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   562
     [ 123 / a ] ifError:[:ex | self halt]
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   563
    "
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   564
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   565
    "
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   566
     |a|
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   567
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   568
     a := 0.
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   569
     [ 123 / a ] ifError:[self halt]
33d75f51cf24 support 0, 1 or 2-arg handler blocks in #ifError:
Claus Gittinger <cg@exept.de>
parents: 6142
diff changeset
   570
    "
9145
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
   571
!
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
   572
15090
74303e1d9ac0 class: Block
Claus Gittinger <cg@exept.de>
parents: 15089
diff changeset
   573
timeToRun
74303e1d9ac0 class: Block
Claus Gittinger <cg@exept.de>
parents: 15089
diff changeset
   574
    ^ Time millisecondsToRun:self
74303e1d9ac0 class: Block
Claus Gittinger <cg@exept.de>
parents: 15089
diff changeset
   575
!
74303e1d9ac0 class: Block
Claus Gittinger <cg@exept.de>
parents: 15089
diff changeset
   576
9145
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
   577
valueWithPossibleArgs:argArray
9602
23539401ab1b leftover halt.
Claus Gittinger <cg@exept.de>
parents: 9486
diff changeset
   578
     ^ self valueWithOptionalArguments:argArray
5015
114243c7fd82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4896
diff changeset
   579
! !
114243c7fd82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4896
diff changeset
   580
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7257
diff changeset
   581
!Block methodsFor:'Compatibility-V''Age'!
1979
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   582
14139
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   583
apply:aCollection from:start to:end
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   584
    "Evaluate the receiver for each variable slot of aCollection from start to end. 
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   585
     Answer aCollection."
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   586
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   587
    aCollection from:start to:end do:self.
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   588
    ^ aCollection
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   589
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   590
    "
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   591
     [:i | Transcript showCR:i ]
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   592
        apply:#(10 20 30 40 50 60) from:2 to:4
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   593
    "
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   594
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   595
    "Created: / 16-05-2012 / 11:20:55 / cg"
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   596
!
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   597
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   598
applyWithIndex:aCollection from:start to:end
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   599
    "Evaluate the receiver for each variable slot and index of aCollection from start to end. 
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   600
     Answer aCollection."
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   601
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   602
    aCollection from:start to:end doWithIndex:self.
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   603
    ^ aCollection
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   604
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   605
    "
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   606
     [:el :i | Transcript showCR:(i -> el) ]
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   607
        applyWithIndex:#(10 20 30 40 50 60) from:2 to:4
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   608
    "
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   609
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   610
    "Created: / 16-05-2012 / 11:22:01 / cg"
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   611
!
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   612
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   613
value:arg1 onReturnDo:aBlock
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   614
    "VisualAge compatibility: alias for #ensure:
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   615
     evaluate the receiver - when the block returns either a local return
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   616
     or an unwind (i.e. does a long return), evaluate the argument, aBlock.
1979
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   617
     This is used to make certain that cleanup actions 
14139
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   618
     (for example closing files etc.) are executed regardless of error actions."
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   619
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   620
    ^ [self value:arg1] ensure:aBlock
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   621
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   622
    "Created: / 16-05-2012 / 11:29:30 / cg"
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   623
!
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   624
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   625
value:arg1 value:arg2 onReturnDo:aBlock
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   626
    "VisualAge compatibility: alias for #ensure:
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   627
     evaluate the receiver - when the block returns either a local return
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   628
     or an unwind (i.e. does a long return), evaluate the argument, aBlock.
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   629
     This is used to make certain that cleanup actions 
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   630
     (for example closing files etc.) are executed regardless of error actions."
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   631
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   632
    ^ [self value:arg1 value:arg2] ensure:aBlock
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   633
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   634
    "Created: / 16-05-2012 / 11:29:46 / cg"
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   635
!
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   636
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   637
value:arg1 value:arg2 value:arg3 onReturnDo:aBlock
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   638
    "VisualAge compatibility: alias for #ensure:
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   639
     evaluate the receiver - when the block returns either a local return
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   640
     or an unwind (i.e. does a long return), evaluate the argument, aBlock.
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   641
     This is used to make certain that cleanup actions 
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   642
     (for example closing files etc.) are executed regardless of error actions."
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   643
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   644
    ^ [self value:arg1 value:arg2 value:arg3] ensure:aBlock
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   645
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   646
    "Created: / 16-05-2012 / 11:29:59 / cg"
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   647
!
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   648
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   649
valueOnReturnDo:aBlock
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   650
    "VisualAge compatibility: alias for #ensure:
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   651
     evaluate the receiver - when the block returns either a local return
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   652
     or an unwind (i.e. does a long return), evaluate the argument, aBlock.
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   653
     This is used to make certain that cleanup actions 
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   654
     (for example closing files etc.) are executed regardless of error actions."
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   655
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   656
    ^ self ensure:aBlock
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   657
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
   658
    "Created: / 15-11-1996 / 11:38:37 / cg"
13054
b07fbe8ae89e added: #when:do:
Claus Gittinger <cg@exept.de>
parents: 13030
diff changeset
   659
!
b07fbe8ae89e added: #when:do:
Claus Gittinger <cg@exept.de>
parents: 13030
diff changeset
   660
b07fbe8ae89e added: #when:do:
Claus Gittinger <cg@exept.de>
parents: 13030
diff changeset
   661
when:exceptionClassOrSignal do:handler
b07fbe8ae89e added: #when:do:
Claus Gittinger <cg@exept.de>
parents: 13030
diff changeset
   662
    ^ self on:exceptionClassOrSignal do:handler
b07fbe8ae89e added: #when:do:
Claus Gittinger <cg@exept.de>
parents: 13030
diff changeset
   663
b07fbe8ae89e added: #when:do:
Claus Gittinger <cg@exept.de>
parents: 13030
diff changeset
   664
    "Created: / 28-08-2010 / 14:41:15 / cg"
1979
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   665
! !
70fcfdbedb98 V'Age compatibility methods
Claus Gittinger <cg@exept.de>
parents: 1874
diff changeset
   666
15850
3b51942600ce class: Block
Stefan Vogel <sv@exept.de>
parents: 15532
diff changeset
   667
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   668
!Block methodsFor:'accessing'!
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   669
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   670
home
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   671
    "return the receivers home context (the context where it was
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   672
     created). For cheap blocks, nil is returned"
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   673
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   674
    ^ home
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   675
!
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   676
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   677
homeMethod
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   678
    "return the receivers home method.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   679
     Thats the method where the block was created."
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   680
10473
5069755dcd2f homeMethod fixed;
Claus Gittinger <cg@exept.de>
parents: 10135
diff changeset
   681
    |m|
5069755dcd2f homeMethod fixed;
Claus Gittinger <cg@exept.de>
parents: 10135
diff changeset
   682
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   683
    home notNil ifTrue:[
10473
5069755dcd2f homeMethod fixed;
Claus Gittinger <cg@exept.de>
parents: 10135
diff changeset
   684
        m := home method.
5069755dcd2f homeMethod fixed;
Claus Gittinger <cg@exept.de>
parents: 10135
diff changeset
   685
        m notNil ifTrue:[^ m].
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   686
    ].
10473
5069755dcd2f homeMethod fixed;
Claus Gittinger <cg@exept.de>
parents: 10135
diff changeset
   687
    m := self literalAt:1 ifAbsent:nil.
5069755dcd2f homeMethod fixed;
Claus Gittinger <cg@exept.de>
parents: 10135
diff changeset
   688
    m isMethod ifTrue:[^ m].
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   689
    ^ nil
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   690
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   691
    "Created: 19.6.1997 / 16:14:57 / cg"
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   692
!
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   693
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   694
method
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   695
    "return the receivers method 
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   696
     (the method where the block was created).
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   697
     Obsolete: use #homeMethod for ST80 compatibility."
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   698
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   699
    <resource: #obsolete>
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   700
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   701
    ^ self homeMethod
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   702
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   703
    "Modified: 19.6.1997 / 16:15:24 / cg"
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   704
!
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   705
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   706
methodHome
15532
bb69abf4fe6d class: Block
Claus Gittinger <cg@exept.de>
parents: 15320
diff changeset
   707
    "return the receiver's method home context (the context where it was
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   708
     defined). For cheap blocks, nil is returned"
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   709
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   710
    home notNil ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   711
        ^ home methodHome
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   712
    ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   713
    ^ nil
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   714
!
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   715
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   716
numArgs
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   717
    "return the number of arguments I expect for evaluation.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   718
     Please use argumentCount, which is ANSI"
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   719
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   720
"/    <resource: #obsolete>
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   721
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   722
    ^ nargs
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   723
! !
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
   724
13220
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
   725
10890
082bafdee487 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10700
diff changeset
   726
!Block methodsFor:'compatibility-Cola & Pepsi'!
082bafdee487 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10700
diff changeset
   727
082bafdee487 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10700
diff changeset
   728
arity
082bafdee487 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10700
diff changeset
   729
    ^ self numArgs
082bafdee487 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10700
diff changeset
   730
! !
5931
9e40d7255c26 check for nil signal in #handle:do:
Claus Gittinger <cg@exept.de>
parents: 5779
diff changeset
   731
2237
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   732
!Block methodsFor:'conversion'!
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   733
5349
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   734
asVarArgBlock
2237
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   735
    "convert myself into a varArg block;
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   736
     this one has 1 formal argument, which gets the list
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   737
     of actual arguments when evaluated."
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   738
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   739
    nargs ~~ 1 ifTrue:[
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   740
	self error:'vararg blocks must take exactly 1 argument - the arg list'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   741
	^ nil
2237
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   742
    ].
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   743
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   744
    self changeClassTo:VarArgBlock.
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   745
    ^ self
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   746
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   747
    "
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   748
     |b|
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   749
5349
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   750
     b := [:argList | Transcript 
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   751
			show:'invoked with args:'; 
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   752
			showCR:argList
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   753
	  ] asVarArgBlock.
5349
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   754
     b value.
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   755
     b value:'arg1'.
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   756
     b value:'arg1' value:'arg2' value:'arg3' value:'arg4'
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   757
    "
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   758
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   759
    "Created: 23.1.1997 / 13:35:28 / cg"
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   760
    "Modified: 23.1.1997 / 13:35:48 / cg"
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   761
!
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   762
7151
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
   763
beCurryingBlock
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
   764
    "make myself a currying block;
12920
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   765
     that's a block which, if invoked with less-than-expected arguments,
7151
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
   766
     returns another block which provides the provided argument(s) and expects the remaining args.
12920
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   767
     Read any book on functional programming, if you don't understand this."
7151
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
   768
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
   769
    self changeClassTo:CurryingBlock.
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
   770
    ^ self
12920
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   771
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   772
    "
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   773
     |b b1 b2 b3|
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   774
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   775
     b := [:a :b :c | a + b + c] beCurryingBlock.
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   776
     b numArgs.    
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   777
     b value:1 value:2 value:3.
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   778
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   779
     b1 := b value:10.
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   780
     b1 numArgs.         
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   781
     b1 value:2 value:3.    
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   782
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   783
     b2 := b value:10 value:20.
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   784
     b2 numArgs.
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   785
     b2 value:3.
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   786
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   787
     b3 := b1 value:20.
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   788
     b3 numArgs.
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   789
     b3 value:3.
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   790
    "
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   791
6f9c1bd017dc comment/format in: #beCurryingBlock
Claus Gittinger <cg@exept.de>
parents: 12887
diff changeset
   792
    "Modified: / 10-05-2010 / 12:56:20 / cg"
7151
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
   793
!
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
   794
5349
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   795
beVarArg
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   796
    "convert myself into a varArg block;
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   797
     this one has 1 formal argument, which gets the list
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   798
     of actual arguments when evaluated."
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   799
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   800
    ^ self asVarArgBlock.
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   801
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   802
    "
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   803
     |b|
f811d5194e8e category renamed.
Claus Gittinger <cg@exept.de>
parents: 5215
diff changeset
   804
2241
1c1e721b76ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2238
diff changeset
   805
     b := [:argList | argList printCR] beVarArg.
2237
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   806
     b value.
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   807
     b value:'arg1' value:'arg2' value:'arg3' value:'arg4'
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   808
    "
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   809
2241
1c1e721b76ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2238
diff changeset
   810
    "Created: 23.1.1997 / 13:35:28 / cg"
1c1e721b76ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2238
diff changeset
   811
    "Modified: 23.1.1997 / 13:35:48 / cg"
2237
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   812
! !
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   813
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
   814
!Block methodsFor:'copying'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   815
10942
fabcc8810faf deepCopy change
ab
parents: 10890
diff changeset
   816
deepCopyUsing:aDictionary postCopySelector:postCopySelector
10135
66ba0830449b partial support for copying (ok, if my context is not active)
fm
parents: 9646
diff changeset
   817
    |copyOfHome copyOfMe|
66ba0830449b partial support for copying (ok, if my context is not active)
fm
parents: 9646
diff changeset
   818
8638
9f82a358172b copy for cheap blocks allowed
penk
parents: 8602
diff changeset
   819
    home isNil ifTrue:[
10942
fabcc8810faf deepCopy change
ab
parents: 10890
diff changeset
   820
        ^ super deepCopyUsing:aDictionary postCopySelector:postCopySelector
8638
9f82a358172b copy for cheap blocks allowed
penk
parents: 8602
diff changeset
   821
    ].
10135
66ba0830449b partial support for copying (ok, if my context is not active)
fm
parents: 9646
diff changeset
   822
    copyOfHome := home deepCopyUsing:aDictionary.
66ba0830449b partial support for copying (ok, if my context is not active)
fm
parents: 9646
diff changeset
   823
    copyOfMe := self shallowCopy.
66ba0830449b partial support for copying (ok, if my context is not active)
fm
parents: 9646
diff changeset
   824
    copyOfMe setHome:copyOfHome.
13517
95a2ffba9880 changed: #deepCopyUsing:postCopySelector:
Claus Gittinger <cg@exept.de>
parents: 13220
diff changeset
   825
    copyOfMe perform:postCopySelector withOptionalArgument:self and:aDictionary.
10135
66ba0830449b partial support for copying (ok, if my context is not active)
fm
parents: 9646
diff changeset
   826
    ^ copyOfMe
66ba0830449b partial support for copying (ok, if my context is not active)
fm
parents: 9646
diff changeset
   827
66ba0830449b partial support for copying (ok, if my context is not active)
fm
parents: 9646
diff changeset
   828
    "Created: / 31-03-1998 / 15:46:17 / cg"
13517
95a2ffba9880 changed: #deepCopyUsing:postCopySelector:
Claus Gittinger <cg@exept.de>
parents: 13220
diff changeset
   829
    "Modified: / 21-07-2011 / 13:30:12 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   830
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   831
a27a279701f8 Initial revision
claus
parents:
diff changeset
   832
!Block methodsFor:'error handling'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   833
328
claus
parents: 326
diff changeset
   834
invalidCodeObject
1874
d0ebe01562e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   835
    "{ Pragma: +optSpace }"
d0ebe01562e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   836
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
   837
    "this error is triggered by the interpreter when a non-Block object
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
   838
     is about to be executed.
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
   839
     In this case, the VM sends this to the bad method (the receiver).
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
   840
     Can only happen when the Compiler/runtime system is broken or
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
   841
     someone played around."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   842
7602
d048f13cd50a Exception classes initialize themself.
Stefan Vogel <sv@exept.de>
parents: 7352
diff changeset
   843
    ^ InvalidCodeError
d048f13cd50a Exception classes initialize themself.
Stefan Vogel <sv@exept.de>
parents: 7352
diff changeset
   844
        raiseRequestWith:self
d048f13cd50a Exception classes initialize themself.
Stefan Vogel <sv@exept.de>
parents: 7352
diff changeset
   845
        errorString:'invalid block - not executable'
1874
d0ebe01562e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   846
d0ebe01562e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   847
    "Modified: 4.11.1996 / 22:46:39 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   848
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   849
a27a279701f8 Initial revision
claus
parents:
diff changeset
   850
!Block methodsFor:'evaluation'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   851
a27a279701f8 Initial revision
claus
parents:
diff changeset
   852
value
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   853
    "evaluate the receiver with no block args. 
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   854
     The receiver must be a block without arguments."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   855
a27a279701f8 Initial revision
claus
parents:
diff changeset
   856
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
   857
a27a279701f8 Initial revision
claus
parents:
diff changeset
   858
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   859
    OBJ home;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   860
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
   861
    if (__INST(nargs) == __mkSmallInteger(0)) {
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   862
#if defined(THIS_CONTEXT)
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   863
        if (__ISVALID_ILC_LNO(__pilc))
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   864
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   865
#endif
328
claus
parents: 326
diff changeset
   866
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   867
        thecode = __BlockInstPtr(self)->b_code;
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   868
#ifdef NEW_BLOCK_CALL
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   869
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   870
            /* compiled machine code */
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   871
            RETURN ( (*thecode)(self) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   872
        }
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   873
        /* interpreted code */
328
claus
parents: 326
diff changeset
   874
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   875
        RETURN ( __interpret(self, 0, nil, nil, nil, nil) );
328
claus
parents: 326
diff changeset
   876
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   877
        RETURN ( __interpret(self, 0, nil, nil, nil, nil) );
328
claus
parents: 326
diff changeset
   878
# endif
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   879
#else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   880
        home = __BlockInstPtr(self)->b_home;
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   881
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   882
            /* compiled machine code */
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   883
            RETURN ( (*thecode)(home) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   884
        }
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   885
        /* interpreted code */
328
claus
parents: 326
diff changeset
   886
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   887
        RETURN ( __interpret(self, 0, nil, home, nil, nil) );
328
claus
parents: 326
diff changeset
   888
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   889
        RETURN ( __interpret(self, 0, nil, home, nil, nil) );
328
claus
parents: 326
diff changeset
   890
# endif
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   891
#endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   892
    }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   893
%}.
103
de0f8152878f errors now raise a signal
claus
parents: 98
diff changeset
   894
    ^ self wrongNumberOfArguments:0
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   895
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   896
a27a279701f8 Initial revision
claus
parents:
diff changeset
   897
value:arg
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   898
    "evaluate the receiver with one argument. 
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   899
     The receiver must be a 1-arg block."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   900
a27a279701f8 Initial revision
claus
parents:
diff changeset
   901
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
   902
a27a279701f8 Initial revision
claus
parents:
diff changeset
   903
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   904
    OBJ home;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   905
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
   906
    if (__INST(nargs) == __mkSmallInteger(1)) {
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   907
#if defined(THIS_CONTEXT)
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   908
        if (__ISVALID_ILC_LNO(__pilc))
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   909
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   910
#endif
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   911
        thecode = __BlockInstPtr(self)->b_code;
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   912
#ifdef NEW_BLOCK_CALL
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   913
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   914
            RETURN ( (*thecode)(self, arg) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   915
        }
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   916
        /* interpreted code */
328
claus
parents: 326
diff changeset
   917
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   918
        RETURN ( __interpret(self, 1, nil, nil, nil, nil, &arg) );
328
claus
parents: 326
diff changeset
   919
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   920
        RETURN ( __interpret(self, 1, nil, nil, nil, nil, arg) );
328
claus
parents: 326
diff changeset
   921
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   922
#else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   923
        home = __BlockInstPtr(self)->b_home;
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   924
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   925
            RETURN ( (*thecode)(home, arg) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   926
        }
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   927
        /* interpreted code */
328
claus
parents: 326
diff changeset
   928
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   929
        RETURN ( __interpret(self, 1, nil, home, nil, nil, &arg) );
328
claus
parents: 326
diff changeset
   930
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   931
        RETURN ( __interpret(self, 1, nil, home, nil, nil, arg) );
328
claus
parents: 326
diff changeset
   932
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   933
#endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
   934
    }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   935
%}.
103
de0f8152878f errors now raise a signal
claus
parents: 98
diff changeset
   936
    ^ self wrongNumberOfArguments:1
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   937
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   938
11998
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   939
value:arg1 optionalArgument:arg2
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   940
    "evaluate the receiver.
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   941
     Optionally pass up one or to two arguments (if the receiver is a one/two arg block)."
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   942
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   943
    nargs == 2 ifTrue:[
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   944
        ^ self value:arg1 value:arg2
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   945
    ].
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   946
    ^ self value:arg1
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   947
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   948
    "
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   949
     |block|
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   950
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   951
     block := [:arg | Transcript showCR:arg ].
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   952
     block value:2 optionalArgument:3.     
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   953
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   954
     block := [:arg1 :arg2 | Transcript show:arg1; space; showCR:arg2 ].
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   955
     block value:2 optionalArgument:3.     
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   956
    "
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   957
!
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   958
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   959
value:arg1 optionalArgument:arg2 and:arg3
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   960
    "evaluate the receiver.
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   961
     Optionally pass up one, two or three arguments (if the receiver is a 1/2/3-arg block)."
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   962
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   963
    nargs == 3 ifTrue:[
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   964
        ^ self value:arg1 value:arg2 value:arg3
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   965
    ].
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   966
    nargs == 2 ifTrue:[
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   967
        ^ self value:arg1 value:arg2
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   968
    ].
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   969
    ^ self value:arg1
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   970
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   971
    "
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   972
     |block|
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   973
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   974
     block := [:arg | Transcript showCR:arg ].
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   975
     block value:2 optionalArgument:3.     
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   976
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   977
     block := [:arg1 :arg2 | Transcript show:arg1; space; showCR:arg2 ].
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   978
     block value:2 optionalArgument:3.     
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   979
    "
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   980
!
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
   981
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   982
value:arg1 value:arg2
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   983
    "evaluate the receiver with two arguments. 
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   984
     The receiver must be a 2-arg block."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   985
a27a279701f8 Initial revision
claus
parents:
diff changeset
   986
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
   987
a27a279701f8 Initial revision
claus
parents:
diff changeset
   988
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   989
    OBJ home;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   990
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
   991
    if (__INST(nargs) == __mkSmallInteger(2)) {
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   992
#if defined(THIS_CONTEXT)
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   993
        if (__ISVALID_ILC_LNO(__pilc))
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   994
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   995
#endif
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   996
        thecode = __BlockInstPtr(self)->b_code;
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   997
#ifdef NEW_BLOCK_CALL
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   998
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
   999
            RETURN ( (*thecode)(self, arg1, arg2) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1000
        }
328
claus
parents: 326
diff changeset
  1001
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1002
        RETURN ( __interpret(self, 2, nil, nil, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
  1003
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1004
        RETURN ( __interpret(self, 2, nil, nil, nil, nil, arg1, arg2) );
328
claus
parents: 326
diff changeset
  1005
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1006
#else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1007
        home = __BlockInstPtr(self)->b_home;
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1008
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1009
            RETURN ( (*thecode)(home, arg1, arg2) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1010
        }
328
claus
parents: 326
diff changeset
  1011
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1012
        RETURN ( __interpret(self, 2, nil, home, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
  1013
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1014
        RETURN ( __interpret(self, 2, nil, home, nil, nil, arg1, arg2) );
328
claus
parents: 326
diff changeset
  1015
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1016
#endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1017
    }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1018
%}.
103
de0f8152878f errors now raise a signal
claus
parents: 98
diff changeset
  1019
    ^ self wrongNumberOfArguments:2
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1020
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1021
11998
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
  1022
value:arg1 value:arg2 optionalArgument:arg3
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
  1023
    "evaluate the receiver.
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
  1024
     Optionally pass two or threearguments (if the receiver is a 2/3-arg block)."
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
  1025
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
  1026
    nargs == 3 ifTrue:[
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
  1027
        ^ self value:arg1 value:arg2 value:arg3
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
  1028
    ].
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
  1029
    ^ self value:arg1 value:arg2
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
  1030
!
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
  1031
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1032
value:arg1 value:arg2 value:arg3
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1033
    "evaluate the receiver with three arguments. 
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1034
     The receiver must be a 3-arg block."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1035
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1036
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1037
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1038
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1039
    OBJ home;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1040
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1041
    if (__INST(nargs) == __mkSmallInteger(3)) {
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1042
#if defined(THIS_CONTEXT)
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1043
        if (__ISVALID_ILC_LNO(__pilc))
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1044
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1045
#endif
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1046
        thecode = __BlockInstPtr(self)->b_code;
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  1047
#ifdef NEW_BLOCK_CALL
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1048
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1049
            RETURN ( (*thecode)(self, arg1, arg2, arg3) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1050
        }
328
claus
parents: 326
diff changeset
  1051
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1052
        RETURN ( __interpret(self, 3, nil, nil, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
  1053
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1054
        RETURN ( __interpret(self, 3, nil, nil, nil, nil, arg1, arg2, arg3) );
328
claus
parents: 326
diff changeset
  1055
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1056
#else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1057
        home = __BlockInstPtr(self)->b_home;
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1058
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1059
            RETURN ( (*thecode)(home, arg1, arg2, arg3) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1060
        }
328
claus
parents: 326
diff changeset
  1061
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1062
        RETURN ( __interpret(self, 3, nil, home, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
  1063
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1064
        RETURN ( __interpret(self, 3, nil, home, nil, nil, arg1, arg2, arg3) );
328
claus
parents: 326
diff changeset
  1065
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1066
#endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1067
    }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1068
%}.
103
de0f8152878f errors now raise a signal
claus
parents: 98
diff changeset
  1069
    ^ self wrongNumberOfArguments:3
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1070
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1071
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1072
value:arg1 value:arg2 value:arg3 value:arg4
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1073
    "evaluate the receiver with four arguments. 
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1074
     The receiver must be a 4-arg block."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1075
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1076
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1077
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1078
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1079
    OBJ home;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1080
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1081
    if (__INST(nargs) == __mkSmallInteger(4)) {
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1082
#if defined(THIS_CONTEXT)
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1083
        if (__ISVALID_ILC_LNO(__pilc))
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1084
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1085
#endif
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1086
        thecode = __BlockInstPtr(self)->b_code;
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  1087
#ifdef NEW_BLOCK_CALL
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1088
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1089
            RETURN ( (*thecode)(self, arg1, arg2, arg3, arg4) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1090
        }
328
claus
parents: 326
diff changeset
  1091
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1092
        RETURN ( __interpret(self, 4, nil, nil, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
  1093
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1094
        RETURN ( __interpret(self, 4, nil, nil, nil, nil, arg1, arg2, arg3, arg4) );
328
claus
parents: 326
diff changeset
  1095
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1096
#else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1097
        home = __BlockInstPtr(self)->b_home;
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1098
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1099
            RETURN ( (*thecode)(home, arg1, arg2, arg3, arg4) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1100
        }
328
claus
parents: 326
diff changeset
  1101
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1102
        RETURN ( __interpret(self, 4, nil, home, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
  1103
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1104
        RETURN ( __interpret(self, 4, nil, home, nil, nil, arg1, arg2, arg3, arg4) );
328
claus
parents: 326
diff changeset
  1105
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1106
#endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1107
    }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1108
%}.
103
de0f8152878f errors now raise a signal
claus
parents: 98
diff changeset
  1109
    ^ self wrongNumberOfArguments:4
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1110
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1111
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1112
value:arg1 value:arg2 value:arg3 value:arg4 value:arg5
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1113
    "evaluate the receiver with five arguments. 
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1114
     The receiver must be a 5-arg block."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1115
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1116
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1117
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1118
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1119
    OBJ home;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1120
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1121
    if (__INST(nargs) == __mkSmallInteger(5)) {
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1122
#if defined(THIS_CONTEXT)
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1123
        if (__ISVALID_ILC_LNO(__pilc))
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1124
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1125
#endif
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1126
        thecode = __BlockInstPtr(self)->b_code;
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  1127
#ifdef NEW_BLOCK_CALL
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1128
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1129
            RETURN ( (*thecode)(self, arg1, arg2, arg3, arg4, arg5) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1130
        }
328
claus
parents: 326
diff changeset
  1131
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1132
        RETURN ( __interpret(self, 5, nil, nil, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
  1133
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1134
        RETURN ( __interpret(self, 5, nil, nil, nil, nil, arg1, arg2, arg3, arg4, arg5) );
328
claus
parents: 326
diff changeset
  1135
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1136
#else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1137
        home = __BlockInstPtr(self)->b_home;
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1138
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1139
            RETURN ( (*thecode)(home, arg1, arg2, arg3, arg4, arg5) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1140
        }
328
claus
parents: 326
diff changeset
  1141
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1142
        RETURN ( __interpret(self, 5, nil, home, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
  1143
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1144
        RETURN ( __interpret(self, 5, nil, home, nil, nil, arg1, arg2, arg3, arg4, arg5) );
328
claus
parents: 326
diff changeset
  1145
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1146
#endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1147
    }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1148
%}.
103
de0f8152878f errors now raise a signal
claus
parents: 98
diff changeset
  1149
    ^ self wrongNumberOfArguments:5
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1150
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1151
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1152
value:arg1 value:arg2 value:arg3 value:arg4 value:arg5 value:arg6
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1153
    "evaluate the receiver with six arguments. 
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1154
     The receiver must be a 6-arg block."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1155
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1156
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1157
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1158
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1159
    OBJ home;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1160
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1161
    if (__INST(nargs) == __mkSmallInteger(6)) {
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1162
#if defined(THIS_CONTEXT)
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1163
        if (__ISVALID_ILC_LNO(__pilc))
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1164
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1165
#endif
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1166
        thecode = __BlockInstPtr(self)->b_code;
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  1167
#ifdef NEW_BLOCK_CALL
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1168
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1169
            RETURN ( (*thecode)(self, arg1, arg2, arg3, arg4, arg5, arg6) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1170
        }
328
claus
parents: 326
diff changeset
  1171
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1172
        RETURN ( __interpret(self, 6, nil, nil, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
  1173
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1174
        RETURN ( __interpret(self, 6, nil, nil, nil, nil, arg1, arg2, arg3, arg4, arg5, arg6) );
328
claus
parents: 326
diff changeset
  1175
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1176
#else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1177
        home = __BlockInstPtr(self)->b_home;
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1178
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1179
            RETURN ( (*thecode)(home, arg1, arg2, arg3, arg4, arg5, arg6) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1180
        }
328
claus
parents: 326
diff changeset
  1181
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1182
        RETURN ( __interpret(self, 6, nil, home, nil, nil, &arg1) );
328
claus
parents: 326
diff changeset
  1183
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1184
        RETURN ( __interpret(self, 6, nil, home, nil, nil, arg1, arg2, arg3, arg4, arg5, arg6) );
328
claus
parents: 326
diff changeset
  1185
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1186
#endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1187
    }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1188
%}.
103
de0f8152878f errors now raise a signal
claus
parents: 98
diff changeset
  1189
    ^ self wrongNumberOfArguments:6
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1190
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1191
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1192
value:arg1 value:arg2 value:arg3 value:arg4 value:arg5 value:arg6 value:arg7
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1193
    "evaluate the receiver with seven arguments.
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1194
     The receiver must be a 7-arg block."
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1195
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1196
%{  /* NOCONTEXT */
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1197
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1198
    REGISTER OBJFUNC thecode;
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1199
    OBJ home;
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1200
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1201
    if (__INST(nargs) == __mkSmallInteger(7)) {
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1202
#if defined(THIS_CONTEXT)
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1203
        if (__ISVALID_ILC_LNO(__pilc))
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1204
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1205
#endif
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1206
        thecode = __BlockInstPtr(self)->b_code;
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1207
#ifdef NEW_BLOCK_CALL
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1208
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1209
            RETURN ( (*thecode)(self, arg1, arg2, arg3, arg4, arg5, arg6, arg7) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1210
        }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1211
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1212
        RETURN ( __interpret(self, 7, nil, nil, nil, nil, &arg1) );
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1213
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1214
        RETURN ( __interpret(self, 7, nil, nil, nil, nil, arg1, arg2, arg3, arg4, arg5, arg6, arg7) );
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1215
# endif
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1216
#else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1217
        home = __BlockInstPtr(self)->b_home;
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1218
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1219
            RETURN ( (*thecode)(home, arg1, arg2, arg3, arg4, arg5, arg6, arg7) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1220
        }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1221
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1222
        RETURN ( __interpret(self, 7, nil, home, nil, nil, &arg1) );
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1223
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1224
        RETURN ( __interpret(self, 7, nil, home, nil, nil, arg1, arg2, arg3, arg4, arg5, arg6, arg7) );
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1225
# endif
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1226
#endif
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1227
    }
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1228
%}.
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1229
    ^ self wrongNumberOfArguments:7
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1230
!
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1231
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1232
value:arg1 value:arg2 value:arg3 value:arg4 value:arg5 value:arg6 value:arg7 value:arg8
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1233
    "evaluate the receiver with eight arguments.
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1234
     The receiver must be a 8-arg block."
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1235
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1236
%{  /* NOCONTEXT */
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1237
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1238
    REGISTER OBJFUNC thecode;
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1239
    OBJ home;
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1240
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1241
    if (__INST(nargs) == __mkSmallInteger(8)) {
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1242
#if defined(THIS_CONTEXT)
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1243
        if (__ISVALID_ILC_LNO(__pilc))
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1244
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1245
#endif
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1246
        thecode = __BlockInstPtr(self)->b_code;
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1247
#ifdef NEW_BLOCK_CALL
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1248
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1249
            RETURN ( (*thecode)(self, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1250
        }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1251
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1252
        RETURN ( __interpret(self, 8, nil, nil, nil, nil, &arg1) );
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1253
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1254
        RETURN ( __interpret(self, 8, nil, nil, nil, nil, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) );
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1255
# endif
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1256
#else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1257
        home = __BlockInstPtr(self)->b_home;
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1258
        if (thecode != (OBJFUNC)nil) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1259
            RETURN ( (*thecode)(home, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1260
        }
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1261
# ifdef PASS_ARG_POINTER
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1262
        RETURN ( __interpret(self, 8, nil, home, nil, nil, &arg1) );
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1263
# else
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1264
        RETURN ( __interpret(self, 8, nil, home, nil, nil, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) );
1605
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1265
# endif
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1266
#endif
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1267
    }
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1268
%}.
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1269
    ^ self wrongNumberOfArguments:8
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1270
!
61def0ffbdd6 added value:...value: with 7 and 8 args
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  1271
11588
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1272
value:arg1 value:arg2 value:arg3 value:arg4 value:arg5 value:arg6 value:arg7 value:arg8 value:arg9
11603
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1273
    "evaluate the receiver with 9 arguments.
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1274
     The receiver must be a 9-arg block."
11588
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1275
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1276
%{  /* NOCONTEXT */
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1277
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1278
    REGISTER OBJFUNC thecode;
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1279
    OBJ home;
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1280
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1281
    if (__INST(nargs) == __mkSmallInteger(9)) {
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1282
#if defined(THIS_CONTEXT)
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1283
        if (__ISVALID_ILC_LNO(__pilc))
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1284
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1285
#endif
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1286
        thecode = __BlockInstPtr(self)->b_code;
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1287
#ifdef NEW_BLOCK_CALL
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1288
        if (thecode != (OBJFUNC)nil) {
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1289
            RETURN ( (*thecode)(self, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) );
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1290
        }
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1291
# ifdef PASS_ARG_POINTER
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1292
        RETURN ( __interpret(self, 9, nil, nil, nil, nil, &arg1) );
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1293
# else
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1294
        RETURN ( __interpret(self, 9, nil, nil, nil, nil, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) );
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1295
# endif
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1296
#else
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1297
        home = __BlockInstPtr(self)->b_home;
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1298
        if (thecode != (OBJFUNC)nil) {
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1299
            RETURN ( (*thecode)(home, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) );
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1300
        }
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1301
# ifdef PASS_ARG_POINTER
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1302
        RETURN ( __interpret(self, 9, nil, home, nil, nil, &arg1) );
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1303
# else
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1304
        RETURN ( __interpret(self, 9, nil, home, nil, nil, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) );
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1305
# endif
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1306
#endif
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1307
    }
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1308
%}.
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1309
    ^ self wrongNumberOfArguments:9
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1310
!
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1311
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1312
value:arg1 value:arg2 value:arg3 value:arg4 value:arg5 value:arg6 value:arg7 value:arg8 value:arg9 value:arg10
11603
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1313
    "evaluate the receiver with 10 arguments.
11588
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1314
     The receiver must be a 10-arg block."
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1315
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1316
%{  /* NOCONTEXT */
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1317
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1318
    REGISTER OBJFUNC thecode;
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1319
    OBJ home;
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1320
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1321
    if (__INST(nargs) == __mkSmallInteger(10)) {
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1322
#if defined(THIS_CONTEXT)
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1323
        if (__ISVALID_ILC_LNO(__pilc))
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1324
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1325
#endif
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1326
        thecode = __BlockInstPtr(self)->b_code;
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1327
#ifdef NEW_BLOCK_CALL
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1328
        if (thecode != (OBJFUNC)nil) {
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1329
            RETURN ( (*thecode)(self, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) );
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1330
        }
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1331
# ifdef PASS_ARG_POINTER
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1332
        RETURN ( __interpret(self, 10, nil, nil, nil, nil, &arg1) );
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1333
# else
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1334
        RETURN ( __interpret(self, 10, nil, nil, nil, nil, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) );
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1335
# endif
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1336
#else
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1337
        home = __BlockInstPtr(self)->b_home;
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1338
        if (thecode != (OBJFUNC)nil) {
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1339
            RETURN ( (*thecode)(home, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) );
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1340
        }
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1341
# ifdef PASS_ARG_POINTER
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1342
        RETURN ( __interpret(self, 10, nil, home, nil, nil, &arg1) );
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1343
# else
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1344
        RETURN ( __interpret(self, 10, nil, home, nil, nil, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) );
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1345
# endif
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1346
#endif
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1347
    }
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1348
%}.
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1349
    ^ self wrongNumberOfArguments:10
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1350
!
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1351
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1352
value:arg1 value:arg2 value:arg3 value:arg4 value:arg5 value:arg6 value:arg7 value:arg8 value:arg9 value:arg10 value:arg11
11603
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1353
    "evaluate the receiver with 11 arguments.
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1354
     The receiver must be a 11-arg block."
11588
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1355
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1356
%{  /* NOCONTEXT */
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1357
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1358
    REGISTER OBJFUNC thecode;
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1359
    OBJ home;
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1360
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1361
    if (__INST(nargs) == __mkSmallInteger(11)) {
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1362
#if defined(THIS_CONTEXT)
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1363
        if (__ISVALID_ILC_LNO(__pilc))
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1364
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1365
#endif
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1366
        thecode = __BlockInstPtr(self)->b_code;
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1367
#ifdef NEW_BLOCK_CALL
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1368
        if (thecode != (OBJFUNC)nil) {
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1369
            RETURN ( (*thecode)(self, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) );
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1370
        }
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1371
# ifdef PASS_ARG_POINTER
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1372
        RETURN ( __interpret(self, 11, nil, nil, nil, nil, &arg1) );
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1373
# else
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1374
        RETURN ( __interpret(self, 11, nil, nil, nil, nil, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) );
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1375
# endif
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1376
#else
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1377
        home = __BlockInstPtr(self)->b_home;
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1378
        if (thecode != (OBJFUNC)nil) {
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1379
            RETURN ( (*thecode)(home, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) );
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1380
        }
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1381
# ifdef PASS_ARG_POINTER
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1382
        RETURN ( __interpret(self, 11, nil, home, nil, nil, &arg1) );
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1383
# else
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1384
        RETURN ( __interpret(self, 11, nil, home, nil, nil, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) );
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1385
# endif
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1386
#endif
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1387
    }
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1388
%}.
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1389
    ^ self wrongNumberOfArguments:11
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1390
!
12a31f924b73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11338
diff changeset
  1391
11603
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1392
value:arg1 value:arg2 value:arg3 value:arg4 value:arg5 value:arg6 value:arg7 value:arg8 value:arg9 value:arg10 value:arg11 value:arg12
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1393
    "evaluate the receiver with 12 arguments.
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1394
     The receiver must be a 12-arg block."
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1395
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1396
%{  /* NOCONTEXT */
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1397
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1398
    REGISTER OBJFUNC thecode;
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1399
    OBJ home;
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1400
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1401
    if (__INST(nargs) == __mkSmallInteger(12)) {
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1402
#if defined(THIS_CONTEXT)
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1403
        if (__ISVALID_ILC_LNO(__pilc))
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1404
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1405
#endif
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1406
        thecode = __BlockInstPtr(self)->b_code;
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1407
#ifdef NEW_BLOCK_CALL
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1408
        if (thecode != (OBJFUNC)nil) {
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1409
            RETURN ( (*thecode)(self, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12) );
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1410
        }
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1411
# ifdef PASS_ARG_POINTER
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1412
        RETURN ( __interpret(self, 12, nil, nil, nil, nil, &arg1) );
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1413
# else
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1414
        RETURN ( __interpret(self, 12, nil, nil, nil, nil, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12) );
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1415
# endif
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1416
#else
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1417
        home = __BlockInstPtr(self)->b_home;
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1418
        if (thecode != (OBJFUNC)nil) {
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1419
            RETURN ( (*thecode)(home, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12) );
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1420
        }
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1421
# ifdef PASS_ARG_POINTER
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1422
        RETURN ( __interpret(self, 12, nil, home, nil, nil, &arg1) );
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1423
# else
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1424
        RETURN ( __interpret(self, 12, nil, home, nil, nil, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12) );
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1425
# endif
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1426
#endif
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1427
    }
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1428
%}.
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1429
    ^ self wrongNumberOfArguments:12
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1430
!
67c94d57ca7a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11588
diff changeset
  1431
3688
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1432
valueAt:priority
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1433
    "evaluate the receiver, at the given prioriy;
11998
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
  1434
     i.e. change the priority for the execution of the receiver.
842499b2f567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11957
diff changeset
  1435
     Bad name: should be called evaluateWithPriority: or similar"
3688
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1436
9042
f41b8427068e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9010
diff changeset
  1437
    |oldPrio retVal activeProcess|
f41b8427068e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9010
diff changeset
  1438
f41b8427068e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9010
diff changeset
  1439
    activeProcess := Processor activeProcess.
3688
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1440
    oldPrio := Processor activePriority.
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1441
    [
9042
f41b8427068e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9010
diff changeset
  1442
        activeProcess priority:priority.
f41b8427068e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9010
diff changeset
  1443
        retVal := self value.
6257
f77941a61a12 Fix comments. Use #ensure: instead of #valueNowOrOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6236
diff changeset
  1444
    ] ensure:[
9042
f41b8427068e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9010
diff changeset
  1445
        activeProcess priority:oldPrio
3688
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1446
    ].
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1447
    ^ retVal
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1448
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1449
    "
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1450
     [
9042
f41b8427068e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9010
diff changeset
  1451
         1000 timesRepeat:[
f41b8427068e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9010
diff changeset
  1452
             1000 factorial
f41b8427068e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9010
diff changeset
  1453
         ]
3688
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1454
     ] valueAt:3
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1455
    "
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1456
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1457
    "Created: / 29.7.1998 / 19:19:48 / cg"
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1458
!
95643ff0e080 added #valueAt:
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1459
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1460
valueWithArguments:argArray
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1461
    "evaluate the receiver with arguments taken from argArray.
313
83c50ef3886a *** empty log message ***
claus
parents: 306
diff changeset
  1462
     ArgArray must be either an Array or nil.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1463
     The size of the argArray must match the number of arguments the receiver expects."
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1464
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1465
    |a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1466
2841
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1467
    (argArray notNil and:[(argArray class ~~ Array) and:[argArray isArray not]]) ifTrue:[
12622
364dcd203682 changed:
Claus Gittinger <cg@exept.de>
parents: 12337
diff changeset
  1468
        argArray isCollection ifTrue:[
364dcd203682 changed:
Claus Gittinger <cg@exept.de>
parents: 12337
diff changeset
  1469
            ^ self valueWithArguments:argArray asArray
364dcd203682 changed:
Claus Gittinger <cg@exept.de>
parents: 12337
diff changeset
  1470
        ].
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1471
        ^ self badArgumentArray:argArray
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1472
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1473
    (argArray size == nargs) ifFalse:[
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1474
        ^ self wrongNumberOfArguments:argArray size
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1475
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1476
%{
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1477
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1478
    REGISTER OBJFUNC thecode;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1479
    OBJ home;
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1480
    REGISTER OBJ *ap;
2841
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1481
    OBJ nA;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1482
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1483
#if defined(THIS_CONTEXT)
328
claus
parents: 326
diff changeset
  1484
    if (__ISVALID_ILC_LNO(__pilc))
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1485
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1486
#endif
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  1487
    thecode = __BlockInstPtr(self)->b_code;
1037
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  1488
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  1489
    nA = __INST(nargs);
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  1490
1037
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  1491
#ifndef NEW_BLOCK_CALL
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  1492
    home = __BlockInstPtr(self)->b_home;
1037
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  1493
    if (thecode != (OBJFUNC)nil) {
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1494
        /* the most common case (0 args) here (without a switch) */
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  1495
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1496
        if (nA == __mkSmallInteger(0)) {
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1497
            RETURN ( (*thecode)(home) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1498
        }
2841
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1499
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1500
        ap = __arrayVal(argArray);   /* nonNil after above test (size is known to be ok) */
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1501
        switch ((INT)(nA)) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1502
            default:
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1503
                goto error;
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1504
            case (INT)__mkSmallInteger(15):
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1505
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7], ap[8], ap[9], ap[10], ap[11], ap[12], ap[13], ap[14]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1506
            case (INT)__mkSmallInteger(14):
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1507
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7], ap[8], ap[9], ap[10], ap[11], ap[12], ap[13]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1508
            case (INT)__mkSmallInteger(13):
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1509
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7], ap[8], ap[9], ap[10], ap[11], ap[12]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1510
            case (INT)__mkSmallInteger(12):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1511
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7], ap[8], ap[9], ap[10], ap[11]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1512
            case (INT)__mkSmallInteger(11):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1513
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7], ap[8], ap[9], ap[10]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1514
            case (INT)__mkSmallInteger(10):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1515
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7], ap[8], ap[9]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1516
            case (INT)__mkSmallInteger(9):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1517
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7], ap[8]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1518
            case (INT)__mkSmallInteger(8):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1519
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1520
            case (INT)__mkSmallInteger(7):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1521
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1522
            case (INT)__mkSmallInteger(6):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1523
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1524
            case (INT)__mkSmallInteger(5):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1525
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1526
            case (INT)__mkSmallInteger(4):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1527
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1528
            case (INT)__mkSmallInteger(3):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1529
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1530
            case (INT)__mkSmallInteger(2):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1531
                RETURN ( (*thecode)(home, ap[0], ap[1]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1532
            case (INT)__mkSmallInteger(1):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1533
                RETURN ( (*thecode)(home, ap[0]) );
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1534
            case (INT)__mkSmallInteger(0):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1535
                RETURN ( (*thecode)(home) );
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1536
                break;
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1537
        }
1037
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  1538
    }
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  1539
#endif
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  1540
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1541
    if (nA != __mkSmallInteger(0)) {
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1542
        ap = __arrayVal(argArray);   /* nonNil after above test (size is known to be ok) */
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1543
        switch ((INT)nA) {
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1544
            default:
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1545
                goto error;
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1546
            case (INT)__mkSmallInteger(15):
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1547
                a15 = ap[14];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1548
            case (INT)__mkSmallInteger(14):
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1549
                a14 = ap[13];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1550
            case (INT)__mkSmallInteger(13):
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1551
                a13 = ap[12];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1552
            case (INT)__mkSmallInteger(12):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1553
                a12 = ap[11];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1554
            case (INT)__mkSmallInteger(11):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1555
                a11 = ap[10];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1556
            case (INT)__mkSmallInteger(10):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1557
                a10 = ap[9];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1558
            case (INT)__mkSmallInteger(9):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1559
                a9 = ap[8];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1560
            case (INT)__mkSmallInteger(8):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1561
                a8 = ap[7];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1562
            case (INT)__mkSmallInteger(7):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1563
                a7 = ap[6];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1564
            case (INT)__mkSmallInteger(6):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1565
                a6 = ap[5];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1566
            case (INT)__mkSmallInteger(5):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1567
                a5 = ap[4];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1568
            case (INT)__mkSmallInteger(4):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1569
                a4 = ap[3];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1570
            case (INT)__mkSmallInteger(3):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1571
                a3 = ap[2];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1572
            case (INT)__mkSmallInteger(2):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1573
                a2 = ap[1];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1574
            case (INT)__mkSmallInteger(1):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1575
                a1 = ap[0];
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
  1576
            case (INT)__mkSmallInteger(0):
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1577
                break;
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1578
        }
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1579
    }
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  1580
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  1581
#ifdef NEW_BLOCK_CALL
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1582
    if (thecode != (OBJFUNC)nil) {
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1583
        RETURN ( (*thecode)(self, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15) );
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  1584
    }
328
claus
parents: 326
diff changeset
  1585
# ifdef PASS_ARG_POINTER
6553
ce4ca4df3415 oops - last modification created a little bug.
Claus Gittinger <cg@exept.de>
parents: 6512
diff changeset
  1586
    RETURN ( __interpret(self, __intVal(nA), nil, nil, nil, nil, &a1) );
328
claus
parents: 326
diff changeset
  1587
# else
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1588
    RETURN ( __interpret(self, __intVal(nA), nil, nil, nil, nil, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15) );
328
claus
parents: 326
diff changeset
  1589
# endif
1037
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  1590
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1591
#else
1037
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  1592
328
claus
parents: 326
diff changeset
  1593
# ifdef PASS_ARG_POINTER
6553
ce4ca4df3415 oops - last modification created a little bug.
Claus Gittinger <cg@exept.de>
parents: 6512
diff changeset
  1594
    RETURN ( __interpret(self, __intVal(nA), nil, home, nil, nil, &a1) );
328
claus
parents: 326
diff changeset
  1595
# else
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1596
    RETURN ( __interpret(self, __intVal(nA), nil, home, nil, nil, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15) );
328
claus
parents: 326
diff changeset
  1597
# endif
1037
4488f834cb6b only one __interpret
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  1598
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1599
#endif
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  1600
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  1601
error: ;
2841
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  1602
%}.
138
c9f46b635f98 *** empty log message ***
claus
parents: 128
diff changeset
  1603
    "
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1604
     the above code only supports up-to 15 arguments
138
c9f46b635f98 *** empty log message ***
claus
parents: 128
diff changeset
  1605
    "
7602
d048f13cd50a Exception classes initialize themself.
Stefan Vogel <sv@exept.de>
parents: 7352
diff changeset
  1606
    ^ ArgumentError
7149
6fe44e7713f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7092
diff changeset
  1607
        raiseRequestWith:self
8009
c37917d9f8fc max 15 args
Claus Gittinger <cg@exept.de>
parents: 7660
diff changeset
  1608
        errorString:'only blocks with up-to 15 arguments supported'
6317
a639eb213a12 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6257
diff changeset
  1609
!
a639eb213a12 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6257
diff changeset
  1610
a639eb213a12 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6257
diff changeset
  1611
valueWithOptionalArgument:arg
a639eb213a12 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6257
diff changeset
  1612
    "evaluate the receiver.
6318
3677d346113a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6317
diff changeset
  1613
     Optionally pass an argument (if the receiver is a one arg block)."
6317
a639eb213a12 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6257
diff changeset
  1614
6628
4d693c525443 #handlerForSignal:context:originator:
Stefan Vogel <sv@exept.de>
parents: 6611
diff changeset
  1615
    nargs == 1 ifTrue:[
4d693c525443 #handlerForSignal:context:originator:
Stefan Vogel <sv@exept.de>
parents: 6611
diff changeset
  1616
        ^ self value:arg
6317
a639eb213a12 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6257
diff changeset
  1617
    ].
a639eb213a12 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6257
diff changeset
  1618
    ^ self value
6320
0db3f79930a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6318
diff changeset
  1619
0db3f79930a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6318
diff changeset
  1620
    "
0db3f79930a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6318
diff changeset
  1621
     |block|
0db3f79930a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6318
diff changeset
  1622
0db3f79930a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6318
diff changeset
  1623
     block := [ Transcript showCR:'hello' ].
0db3f79930a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6318
diff changeset
  1624
     block valueWithOptionalArgument:2.     
0db3f79930a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6318
diff changeset
  1625
0db3f79930a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6318
diff changeset
  1626
     block := [:arg | Transcript showCR:arg ].
0db3f79930a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6318
diff changeset
  1627
     block valueWithOptionalArgument:2.     
0db3f79930a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6318
diff changeset
  1628
    "
6785
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1629
!
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1630
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1631
valueWithOptionalArgument:arg1 and:arg2
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1632
    "evaluate the receiver.
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1633
     Optionally pass up to two arguments (if the receiver is a one/two arg block)."
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1634
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1635
    nargs == 2 ifTrue:[
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1636
        ^ self value:arg1 value:arg2
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1637
    ].
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1638
    nargs == 1 ifTrue:[
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1639
        ^ self value:arg1
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1640
    ].
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1641
    ^ self value
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1642
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1643
    "
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1644
     |block|
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1645
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1646
     block := [ Transcript showCR:'hello' ].
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1647
     block valueWithOptionalArgument:2.     
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1648
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1649
     block := [:arg | Transcript showCR:arg ].
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1650
     block valueWithOptionalArgument:2.     
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1651
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1652
     block := [:arg1 :arg2 | Transcript showCR:arg1. Transcript showCR:arg2 ].
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1653
     block valueWithOptionalArgument:10 and:20.     
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  1654
    "
9010
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1655
!
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1656
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1657
valueWithOptionalArgument:arg1 and:arg2 and:arg3
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1658
    "evaluate the receiver.
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1659
     Optionally pass up to three arguments (if the receiver is a one/two/three arg block)."
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1660
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1661
    nargs == 3 ifTrue:[
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1662
        ^ self value:arg1 value:arg2 value:arg3
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1663
    ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1664
    nargs == 2 ifTrue:[
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1665
        ^ self value:arg1 value:arg2
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1666
    ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1667
    nargs == 1 ifTrue:[
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1668
        ^ self value:arg1
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1669
    ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1670
    ^ self value
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1671
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1672
    "
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1673
     |block|
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1674
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1675
     block := [ Transcript showCR:'hello' ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1676
     block valueWithOptionalArgument:2.     
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1677
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1678
     block := [:arg | Transcript showCR:arg ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1679
     block valueWithOptionalArgument:2.     
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1680
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1681
     block := [:arg1 :arg2 | Transcript showCR:arg1. Transcript showCR:arg2 ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1682
     block valueWithOptionalArgument:10 and:20.     
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1683
    "
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1684
!
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1685
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1686
valueWithOptionalArgument:arg1 and:arg2 and:arg3 and:arg4
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1687
    "evaluate the receiver.
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1688
     Optionally pass up to four arguments (if the receiver is a one/two/three/four arg block)."
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1689
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1690
    nargs == 4 ifTrue:[
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1691
        ^ self value:arg1 value:arg2 value:arg3 value:arg4
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1692
    ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1693
    nargs == 3 ifTrue:[
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1694
        ^ self value:arg1 value:arg2 value:arg3
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1695
    ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1696
    nargs == 2 ifTrue:[
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1697
        ^ self value:arg1 value:arg2
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1698
    ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1699
    nargs == 1 ifTrue:[
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1700
        ^ self value:arg1
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1701
    ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1702
    ^ self value
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1703
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1704
    "
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1705
     |block|
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1706
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1707
     block := [ Transcript showCR:'hello' ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1708
     block valueWithOptionalArgument:2.     
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1709
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1710
     block := [:arg | Transcript showCR:arg ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1711
     block valueWithOptionalArgument:2.     
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1712
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1713
     block := [:arg1 :arg2 | Transcript showCR:arg1. Transcript showCR:arg2 ].
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1714
     block valueWithOptionalArgument:10 and:20.     
25567141f7f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1715
    "
9145
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1716
!
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1717
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1718
valueWithOptionalArguments:argArray
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1719
    "evaluate the receiver with arguments as required taken from argArray.
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1720
     Only the required number of arguments is taken from argArray or nil;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1721
     (i.e. argArray may be larger than the required number).
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1722
     If the size of the argArray is smaller than the number of arguments, an error is raised."
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1723
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1724
    |numArgsProvided a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15|
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1725
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1726
    (argArray notNil and:[(argArray class ~~ Array) and:[argArray isArray not]]) ifTrue:[
12622
364dcd203682 changed:
Claus Gittinger <cg@exept.de>
parents: 12337
diff changeset
  1727
        argArray isCollection ifTrue:[
364dcd203682 changed:
Claus Gittinger <cg@exept.de>
parents: 12337
diff changeset
  1728
            ^ self valueWithArguments:argArray asArray
364dcd203682 changed:
Claus Gittinger <cg@exept.de>
parents: 12337
diff changeset
  1729
        ].
9145
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1730
        ^ self badArgumentArray:argArray
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1731
    ].
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1732
    (argArray size >= nargs) ifFalse:[
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1733
        ^ self wrongNumberOfArguments:argArray size
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1734
    ].
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1735
%{
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1736
    REGISTER OBJFUNC thecode;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1737
    OBJ home;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1738
    REGISTER OBJ *ap;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1739
    OBJ nA;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1740
    int __numArgsProvided = __intVal(numArgsProvided);
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1741
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1742
#if defined(THIS_CONTEXT)
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1743
    if (__ISVALID_ILC_LNO(__pilc))
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1744
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1745
#endif
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1746
    thecode = __BlockInstPtr(self)->b_code;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1747
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1748
    nA = __INST(nargs);
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1749
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1750
    if (argArray == nil) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1751
        ap = 0;  
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1752
    } else {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1753
        ap = __arrayVal(argArray);   /* nonNil after above test (size is known to be ok) */
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1754
    }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1755
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1756
#ifndef NEW_BLOCK_CALL
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1757
    home = __BlockInstPtr(self)->b_home;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1758
    if (thecode != (OBJFUNC)nil) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1759
        /* the most common case (0 args) here (without a switch) */
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1760
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1761
        if (nA == __mkSmallInteger(0)) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1762
            RETURN ( (*thecode)(home) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1763
        }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1764
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1765
        switch ((INT)(nA)) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1766
            default:
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1767
                goto error;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1768
            case (INT)__mkSmallInteger(15):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1769
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7], ap[8], ap[9], ap[10], ap[11], ap[12], ap[13], ap[14]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1770
            case (INT)__mkSmallInteger(14):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1771
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7], ap[8], ap[9], ap[10], ap[11], ap[12], ap[13]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1772
            case (INT)__mkSmallInteger(13):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1773
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7], ap[8], ap[9], ap[10], ap[11], ap[12]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1774
            case (INT)__mkSmallInteger(12):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1775
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7], ap[8], ap[9], ap[10], ap[11]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1776
            case (INT)__mkSmallInteger(11):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1777
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7], ap[8], ap[9], ap[10]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1778
            case (INT)__mkSmallInteger(10):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1779
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7], ap[8], ap[9]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1780
            case (INT)__mkSmallInteger(9):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1781
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7], ap[8]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1782
            case (INT)__mkSmallInteger(8):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1783
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6], ap[7]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1784
            case (INT)__mkSmallInteger(7):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1785
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5], ap[6]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1786
            case (INT)__mkSmallInteger(6):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1787
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4], ap[5]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1788
            case (INT)__mkSmallInteger(5):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1789
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3], ap[4]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1790
            case (INT)__mkSmallInteger(4):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1791
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2], ap[3]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1792
            case (INT)__mkSmallInteger(3):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1793
                RETURN ( (*thecode)(home, ap[0], ap[1], ap[2]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1794
            case (INT)__mkSmallInteger(2):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1795
                RETURN ( (*thecode)(home, ap[0], ap[1]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1796
            case (INT)__mkSmallInteger(1):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1797
                RETURN ( (*thecode)(home, ap[0]) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1798
            case (INT)__mkSmallInteger(0):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1799
                RETURN ( (*thecode)(home) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1800
                break;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1801
        }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1802
    }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1803
#endif
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1804
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1805
    if (nA != __mkSmallInteger(0)) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1806
        ap = __arrayVal(argArray);   /* nonNil after above test (size is known to be ok) */
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1807
        switch ((INT)nA) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1808
            default:
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1809
                goto error;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1810
            case (INT)__mkSmallInteger(15):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1811
                a15 = ap[14];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1812
            case (INT)__mkSmallInteger(14):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1813
                a14 = ap[13];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1814
            case (INT)__mkSmallInteger(13):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1815
                a13 = ap[12];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1816
            case (INT)__mkSmallInteger(12):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1817
                a12 = ap[11];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1818
            case (INT)__mkSmallInteger(11):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1819
                a11 = ap[10];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1820
            case (INT)__mkSmallInteger(10):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1821
                a10 = ap[9];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1822
            case (INT)__mkSmallInteger(9):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1823
                a9 = ap[8];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1824
            case (INT)__mkSmallInteger(8):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1825
                a8 = ap[7];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1826
            case (INT)__mkSmallInteger(7):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1827
                a7 = ap[6];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1828
            case (INT)__mkSmallInteger(6):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1829
                a6 = ap[5];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1830
            case (INT)__mkSmallInteger(5):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1831
                a5 = ap[4];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1832
            case (INT)__mkSmallInteger(4):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1833
                a4 = ap[3];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1834
            case (INT)__mkSmallInteger(3):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1835
                a3 = ap[2];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1836
            case (INT)__mkSmallInteger(2):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1837
                a2 = ap[1];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1838
            case (INT)__mkSmallInteger(1):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1839
                a1 = ap[0];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1840
            case (INT)__mkSmallInteger(0):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1841
                break;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1842
        }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1843
    }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1844
#ifdef NEW_BLOCK_CALL
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1845
    if (thecode != (OBJFUNC)nil) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1846
        RETURN ( (*thecode)(self, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1847
    }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1848
# ifdef PASS_ARG_POINTER
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1849
    RETURN ( __interpret(self, __intVal(nA), nil, nil, nil, nil, &a1) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1850
# else
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1851
    RETURN ( __interpret(self, __intVal(nA), nil, nil, nil, nil, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1852
# endif
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1853
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1854
#else
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1855
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1856
# ifdef PASS_ARG_POINTER
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1857
    RETURN ( __interpret(self, __intVal(nA), nil, home, nil, nil, &a1) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1858
# else
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1859
    RETURN ( __interpret(self, __intVal(nA), nil, home, nil, nil, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1860
# endif
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1861
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1862
#endif
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1863
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1864
error: ;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1865
%}.
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1866
    "
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1867
     the above code only supports up-to 15 arguments
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1868
    "
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1869
    ^ ArgumentError
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1870
        raiseRequestWith:self
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1871
        errorString:'only blocks with up-to 15 arguments supported'
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1872
!
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1873
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1874
valueWithPossibleArguments:argArray
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1875
    "evaluate the receiver with arguments as required taken from argArray.
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1876
     If argArray provides less than the required number of arguments, 
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1877
     nil is assumed for any remaining argument.
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1878
     (i.e. argArray may be smaller than the required number).
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1879
     Only the required number of arguments is taken from argArray or nil;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1880
     (i.e. argArray may be larger than the required number)."
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1881
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1882
    |numArgsProvided a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15|
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1883
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1884
    (argArray notNil and:[(argArray class ~~ Array) and:[argArray isArray not]]) ifTrue:[
12622
364dcd203682 changed:
Claus Gittinger <cg@exept.de>
parents: 12337
diff changeset
  1885
        argArray isCollection ifTrue:[
364dcd203682 changed:
Claus Gittinger <cg@exept.de>
parents: 12337
diff changeset
  1886
            ^ self valueWithArguments:argArray asArray
364dcd203682 changed:
Claus Gittinger <cg@exept.de>
parents: 12337
diff changeset
  1887
        ].
9145
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1888
        ^ self badArgumentArray:argArray
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1889
    ].
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1890
    numArgsProvided := argArray size.
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1891
%{
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1892
    REGISTER OBJFUNC thecode;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1893
    OBJ home;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1894
    REGISTER OBJ *ap;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1895
    OBJ nA;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1896
    int __numArgsProvided = __intVal(numArgsProvided);
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1897
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1898
#if defined(THIS_CONTEXT)
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1899
    if (__ISVALID_ILC_LNO(__pilc))
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1900
            __ContextInstPtr(__thisContext)->c_lineno = __ILC_LNO_AS_OBJ(__pilc);
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1901
#endif
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1902
    thecode = __BlockInstPtr(self)->b_code;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1903
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1904
    nA = __INST(nargs);
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1905
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1906
    if (argArray == nil) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1907
        ap = 0;  
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1908
    } else {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1909
        ap = __arrayVal(argArray);   /* nonNil after above test (size is known to be ok) */
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1910
    }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1911
    switch (__numArgsProvided) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1912
        default:
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1913
        case 15: a15 = ap[14];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1914
        case 14: a14 = ap[13];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1915
        case 13: a13 = ap[12];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1916
        case 12: a12 = ap[11];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1917
        case 11: a11 = ap[10];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1918
        case 10: a10 = ap[9];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1919
        case 9: a9 = ap[8];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1920
        case 8: a8 = ap[7];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1921
        case 7: a7 = ap[6];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1922
        case 6: a6 = ap[5];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1923
        case 5: a5 = ap[4];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1924
        case 4: a4 = ap[3];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1925
        case 3: a3 = ap[2];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1926
        case 2: a2 = ap[1];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1927
        case 1: a1 = ap[0];
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1928
        case 0: ;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1929
    }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1930
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1931
#ifndef NEW_BLOCK_CALL
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1932
    home = __BlockInstPtr(self)->b_home;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1933
    if (thecode != (OBJFUNC)nil) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1934
        /* the most common case (0 args) here (without a switch) */
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1935
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1936
        if (nA == __mkSmallInteger(0)) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1937
            RETURN ( (*thecode)(home) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1938
        }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1939
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1940
        switch ((INT)(nA)) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1941
            default:
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1942
                goto error;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1943
            case (INT)__mkSmallInteger(15):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1944
                RETURN ( (*thecode)(home, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1945
            case (INT)__mkSmallInteger(14):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1946
                RETURN ( (*thecode)(home, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1947
            case (INT)__mkSmallInteger(13):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1948
                RETURN ( (*thecode)(home, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1949
            case (INT)__mkSmallInteger(12):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1950
                RETURN ( (*thecode)(home, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1951
            case (INT)__mkSmallInteger(11):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1952
                RETURN ( (*thecode)(home, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1953
            case (INT)__mkSmallInteger(10):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1954
                RETURN ( (*thecode)(home, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1955
            case (INT)__mkSmallInteger(9):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1956
                RETURN ( (*thecode)(home, a1, a2, a3, a4, a5, a6, a7, a8, a9) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1957
            case (INT)__mkSmallInteger(8):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1958
                RETURN ( (*thecode)(home, a1, a2, a3, a4, a5, a6, a7, a8) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1959
            case (INT)__mkSmallInteger(7):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1960
                RETURN ( (*thecode)(home, a1, a2, a3, a4, a5, a6, a7) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1961
            case (INT)__mkSmallInteger(6):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1962
                RETURN ( (*thecode)(home, a1, a2, a3, a4, a5, a6) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1963
            case (INT)__mkSmallInteger(5):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1964
                RETURN ( (*thecode)(home, a1, a2, a3, a4, a5) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1965
            case (INT)__mkSmallInteger(4):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1966
                RETURN ( (*thecode)(home, a1, a2, a3, a4) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1967
            case (INT)__mkSmallInteger(3):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1968
                RETURN ( (*thecode)(home, a1, a2, a3) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1969
            case (INT)__mkSmallInteger(2):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1970
                RETURN ( (*thecode)(home, a1, a2) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1971
            case (INT)__mkSmallInteger(1):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1972
                RETURN ( (*thecode)(home, a1) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1973
            case (INT)__mkSmallInteger(0):
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1974
                RETURN ( (*thecode)(home) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1975
                break;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1976
        }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1977
    }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1978
#endif
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1979
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1980
#ifdef NEW_BLOCK_CALL
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1981
    if (thecode != (OBJFUNC)nil) {
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1982
        RETURN ( (*thecode)(self, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1983
    }
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1984
# ifdef PASS_ARG_POINTER
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1985
    RETURN ( __interpret(self, __intVal(nA), nil, nil, nil, nil, &a1) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1986
# else
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1987
    RETURN ( __interpret(self, __intVal(nA), nil, nil, nil, nil, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1988
# endif
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1989
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1990
#else
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1991
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1992
# ifdef PASS_ARG_POINTER
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1993
    RETURN ( __interpret(self, __intVal(nA), nil, home, nil, nil, &a1) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1994
# else
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1995
    RETURN ( __interpret(self, __intVal(nA), nil, home, nil, nil, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15) );
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1996
# endif
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1997
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1998
#endif
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1999
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2000
error: ;
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2001
%}.
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2002
    "
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2003
     the above code only supports up-to 15 arguments
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2004
    "
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2005
    ^ ArgumentError
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2006
        raiseRequestWith:self
c0ccf0f361ba +valueWithPossibleArguments:
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2007
        errorString:'only blocks with up-to 15 arguments supported'
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2008
! !
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2009
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2010
!Block methodsFor:'exception handling'!
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2011
6512
f015412236b3 use #isSignalOrSignalSet
Claus Gittinger <cg@exept.de>
parents: 6498
diff changeset
  2012
on:aSignalOrSignalSetOrException do:exceptionBlock
f015412236b3 use #isSignalOrSignalSet
Claus Gittinger <cg@exept.de>
parents: 6498
diff changeset
  2013
    "added for ANSI compatibility; evaluate the receiver,
f015412236b3 use #isSignalOrSignalSet
Claus Gittinger <cg@exept.de>
parents: 6498
diff changeset
  2014
     handling aSignalOrSignalSetOrException. 
f015412236b3 use #isSignalOrSignalSet
Claus Gittinger <cg@exept.de>
parents: 6498
diff changeset
  2015
     The 2nd argument, exceptionBlock is evaluated
f015412236b3 use #isSignalOrSignalSet
Claus Gittinger <cg@exept.de>
parents: 6498
diff changeset
  2016
     if the signal is raised during evaluation."
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2017
4542
5dc47816cf68 Add #handlerProtectedBlock:inContext
Stefan Vogel <sv@exept.de>
parents: 4513
diff changeset
  2018
    <context: #return>
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  2019
    <exception: #handle>
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2020
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  2021
    "/ thisContext markForHandle. -- same as above pragma
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  2022
    ^ self value. "the real logic is in Exception>>doRaise"
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2023
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2024
    "
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2025
     [
6512
f015412236b3 use #isSignalOrSignalSet
Claus Gittinger <cg@exept.de>
parents: 6498
diff changeset
  2026
        1 foo
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2027
     ] on:MessageNotUnderstood do:[:ex | self halt]
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2028
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2029
     [
6512
f015412236b3 use #isSignalOrSignalSet
Claus Gittinger <cg@exept.de>
parents: 6498
diff changeset
  2030
        1 foo
f015412236b3 use #isSignalOrSignalSet
Claus Gittinger <cg@exept.de>
parents: 6498
diff changeset
  2031
     ] on:(MessageNotUnderstood , AbortOperationRequest) do:[:ex | self halt]
f015412236b3 use #isSignalOrSignalSet
Claus Gittinger <cg@exept.de>
parents: 6498
diff changeset
  2032
f015412236b3 use #isSignalOrSignalSet
Claus Gittinger <cg@exept.de>
parents: 6498
diff changeset
  2033
     [
f015412236b3 use #isSignalOrSignalSet
Claus Gittinger <cg@exept.de>
parents: 6498
diff changeset
  2034
        1 foo
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2035
     ] on:SignalSet anySignal do:[:ex| 2 bar. self halt]
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2036
    "
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2037
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2038
    "Modified: / 26.7.1999 / 15:30:48 / stefan"
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2039
!
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2040
11338
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2041
on:aSignalOrSignalSetOrException do:exceptionBlock ensure:ensureBlock
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2042
    "added for ANSI compatibility; evaluate the receiver,
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2043
     handling aSignalOrSignalSetOrException. 
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2044
     The 2nd argument, exceptionBlock is evaluated
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2045
     if the signal is raised during evaluation.
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2046
     The 3rd argument, ensureBlock is evaluated in any case - even if the activity
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2047
     was unwound due to an unhandled exception."
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2048
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2049
    <context: #return>
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2050
    <exception: #handle>
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2051
    <exception: #unwind>
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2052
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2053
    |v|
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2054
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2055
    v := self value.       "the real logic is in Context>>unwind and Exception>>doRaise"
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2056
    thisContext unmarkForUnwind.
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2057
    ensureBlock value.
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2058
    ^ v
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2059
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2060
    "
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2061
     |e|
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2062
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2063
     e := 0.
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2064
     [
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2065
        1 foo
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2066
     ] on:MessageNotUnderstood 
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2067
     do:[:ex | self halt]
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2068
     ensure:[ e := 1 ].
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2069
     self assert:(e == 1).
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2070
    "
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2071
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2072
    "
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2073
     |e|
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2074
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2075
     e := 0.
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2076
     [
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2077
        1 negated
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2078
     ] on:MessageNotUnderstood 
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2079
     do:[:ex | self halt]
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2080
     ensure:[ e := 1 ].
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2081
     self assert:(e == 1).
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2082
    "
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2083
!
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2084
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2085
on:anExceptionHandler do:exceptionBlock on:anExceptionHandler2 do:anExceptionBlock2
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2086
    "added for ANSI compatibility; evaluate the receiver,
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2087
     handling aSignalOrSignalSetOrException. 
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2088
     The 2nd argument, exceptionBlock is evaluated
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2089
     if the signal is raised during evaluation."
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2090
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2091
    <context: #return>
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2092
    <exception: #handle>
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2093
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2094
    "/ thisContext markForHandle. -- same as above pragma
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2095
    ^ self value. "the real logic is in Exception>>doRaise"
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2096
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2097
    "
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2098
     [
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2099
        1 foo
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2100
     ] on:MessageNotUnderstood do:[:ex | self halt:'Got MessageNotUnderstood'] 
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2101
       on:Error do:[:ex| self halt:'Got Error']
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2102
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2103
     [
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2104
        1 // 0
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2105
     ] on:MessageNotUnderstood do:[:ex | self halt:'Got MessageNotUnderstood'] 
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2106
       on:Error do:[:ex| self halt:'Got Error']
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2107
    "
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2108
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2109
    "Modified: / 26.7.1999 / 15:30:48 / stefan"
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2110
!
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2111
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2112
valueWithExceptionHandler:handler
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2113
    "evaluate myself. If any of the signals in handler is raised,
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2114
     evaluate the corresponding handler block."
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2115
4547
082a2f7d9d8e Add #handlerProtectedBlock:inContext
Stefan Vogel <sv@exept.de>
parents: 4542
diff changeset
  2116
    <context: #return>
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  2117
    <exception: #handle>
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  2118
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  2119
    "/ thisContext markForHandle. -- same as above pragma
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  2120
    ^ self value. "the real logic is in Exception>>doRaise"
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2121
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2122
    "Created: / 26.7.1999 / 11:23:45 / stefan"
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2123
    "Modified: / 26.7.1999 / 11:24:06 / stefan"
9485
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  2124
!
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  2125
14803
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2126
valueWithTimeout:aTimeDuration
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2127
    "execute the receiver, but abort the evaluation after aTimeDuration if still running.
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2128
     Return the receivers value, or nil if aborted."
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2129
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2130
    ^ self valueWithWatchDog:[^ nil] afterMilliseconds:aTimeDuration asMilliseconds
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2131
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2132
    "
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2133
     [
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2134
        1 to:15 do:[:round |
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2135
            Transcript showCR:round.
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2136
            Delay waitForMilliseconds:20.
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2137
        ].
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2138
        true
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2139
     ] valueWithTimeout:(TimeDuration seconds:1)      
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2140
    "
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2141
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2142
    "
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2143
     [
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2144
        1 to:100 do:[:round |
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2145
            Transcript showCR:round.
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2146
            Delay waitForMilliseconds:20.
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2147
        ].
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2148
        true
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2149
     ] valueWithTimeout:(TimeDuration seconds:1)                  
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2150
    "
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2151
!
b759154289ec class: Block
Claus Gittinger <cg@exept.de>
parents: 14683
diff changeset
  2152
9485
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  2153
valueWithWatchDog:exceptionBlock afterMilliseconds:aTimeLimit
11803
1f0585980edf comment
Claus Gittinger <cg@exept.de>
parents: 11709
diff changeset
  2154
    "a watchdog on a block's execution. If the block does not finish its
1f0585980edf comment
Claus Gittinger <cg@exept.de>
parents: 11709
diff changeset
  2155
     evaluation after aTimeLimit milliseconds, it is interrupted (aborted) and
1f0585980edf comment
Claus Gittinger <cg@exept.de>
parents: 11709
diff changeset
  2156
     exceptionBlock's value is returned. The receiver's code must be prepared
1f0585980edf comment
Claus Gittinger <cg@exept.de>
parents: 11709
diff changeset
  2157
     for premature returning (by adding ensure blocks, as required)"
9485
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  2158
13220
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2159
    |showStopper me retVal done inError|
12927
1caadc2e24d8 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 12921
diff changeset
  2160
1caadc2e24d8 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 12921
diff changeset
  2161
    done := false.
9485
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  2162
    me := Processor activeProcess.
11704
a47fdf0a638d oops - valueWithWatchDog did not
Claus Gittinger <cg@exept.de>
parents: 11638
diff changeset
  2163
13220
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2164
    showStopper := 
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2165
        [ 
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2166
            done ifFalse:[ 
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2167
                me interruptWith:[
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2168
                    (Processor activeProcess state ~~ #debug) ifTrue:[
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2169
                        done ifFalse:[ TimeoutNotification raiseRequest ]
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2170
                    ]
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2171
                ] 
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2172
            ]
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2173
        ].
13030
9b9f51659b4a changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 12931
diff changeset
  2174
9b9f51659b4a changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 12931
diff changeset
  2175
    TimeoutNotification handle:[:ex |
13220
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2176
        inError ifTrue:[
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2177
            ex proceed
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2178
        ].
10700
0436b2f40e4c changed #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 10678
diff changeset
  2179
        retVal := exceptionBlock value.
0436b2f40e4c changed #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 10678
diff changeset
  2180
    ] do:[
13220
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2181
        NoHandlerError handle:[:ex |
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2182
            inError := true.
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2183
            ex reject.
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2184
        ] do:[
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2185
            [
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2186
                Processor 
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2187
                    addTimedBlock:showStopper 
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2188
                    for:me 
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2189
                    afterMilliseconds:aTimeLimit.
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2190
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2191
                retVal := self value.
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2192
                done := true.
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2193
            ] ensure:[ 
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2194
                Processor removeTimedBlock:showStopper 
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2195
            ].
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2196
        ]
9485
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  2197
    ].
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  2198
    ^ retVal
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  2199
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  2200
    "
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  2201
     [
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  2202
        Delay waitForSeconds:5.
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  2203
        true
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  2204
     ] valueWithWatchDog:[false] afterMilliseconds:2000      
dab6bd4e2a81 added evaluation with watchdog
Claus Gittinger <cg@exept.de>
parents: 9287
diff changeset
  2205
    "
10678
5cd10f301f94 changed #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 10473
diff changeset
  2206
12928
09910443da3e changed: #valueWithWatchDog:afterMilliseconds:
sr
parents: 12927
diff changeset
  2207
    "Modified: / 21-05-2010 / 12:19:57 / sr"
13220
21b4d5e57663 changed: #valueWithWatchDog:afterMilliseconds:
Claus Gittinger <cg@exept.de>
parents: 13054
diff changeset
  2208
    "Modified: / 18-01-2011 / 19:24:13 / cg"
4464
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2209
! !
cec93c942c14 Use context flag for exception handling instead of searching for
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
  2210
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2211
!Block methodsFor:'exception handling private'!
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2212
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2213
exceptionHandlerFor:anException in:aContext
11338
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2214
    "answer the exceptionHandler (the Error or signal) for anException from aContext."
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2215
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2216
    aContext selector == #on:do:on:do: ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2217
        |exceptionCreator exceptionHandlerInContext|
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2218
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2219
        exceptionCreator := anException creator.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2220
        exceptionHandlerInContext := aContext argAt:1.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2221
        exceptionHandlerInContext isExceptionHandler ifFalse:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2222
            exceptionHandlerInContext isNil ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2223
                'Block [warning]: nil ExceptionHandler in on:do:on:do:-context' errorPrintCR.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2224
            ] ifFalse:[
12337
f7c19b610a4d changed: #exceptionHandlerFor:in:
Claus Gittinger <cg@exept.de>
parents: 12334
diff changeset
  2225
                (exceptionHandlerInContext isBehavior 
f7c19b610a4d changed: #exceptionHandlerFor:in:
Claus Gittinger <cg@exept.de>
parents: 12334
diff changeset
  2226
                and:[exceptionHandlerInContext isLoaded not]) ifTrue:[
f7c19b610a4d changed: #exceptionHandlerFor:in:
Claus Gittinger <cg@exept.de>
parents: 12334
diff changeset
  2227
                    "If the exception class is still autoloaded,
f7c19b610a4d changed: #exceptionHandlerFor:in:
Claus Gittinger <cg@exept.de>
parents: 12334
diff changeset
  2228
                     it does not accept our exception. Raising the exception would load the class"
f7c19b610a4d changed: #exceptionHandlerFor:in:
Claus Gittinger <cg@exept.de>
parents: 12334
diff changeset
  2229
                    ^ nil
f7c19b610a4d changed: #exceptionHandlerFor:in:
Claus Gittinger <cg@exept.de>
parents: 12334
diff changeset
  2230
                ] ifFalse:[
f7c19b610a4d changed: #exceptionHandlerFor:in:
Claus Gittinger <cg@exept.de>
parents: 12334
diff changeset
  2231
                    'Block [warning]: non-ExceptionHandler in on:do:on:do:-context' errorPrintCR.
f7c19b610a4d changed: #exceptionHandlerFor:in:
Claus Gittinger <cg@exept.de>
parents: 12334
diff changeset
  2232
                ]
f7c19b610a4d changed: #exceptionHandlerFor:in:
Claus Gittinger <cg@exept.de>
parents: 12334
diff changeset
  2233
            ].
f7c19b610a4d changed: #exceptionHandlerFor:in:
Claus Gittinger <cg@exept.de>
parents: 12334
diff changeset
  2234
            aContext fullPrintString errorPrintCR.
f7c19b610a4d changed: #exceptionHandlerFor:in:
Claus Gittinger <cg@exept.de>
parents: 12334
diff changeset
  2235
            self breakPoint:#cg.
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2236
            ^ nil.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2237
        ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2238
        (exceptionHandlerInContext accepts:exceptionCreator) ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2239
            ^ exceptionHandlerInContext.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2240
        ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2241
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2242
        exceptionHandlerInContext := aContext argAt:3.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2243
        exceptionHandlerInContext isExceptionHandler ifFalse:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2244
            exceptionHandlerInContext isNil ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2245
                'Block [warning]: nil ExceptionHandler in on:do:on:do:-context' errorPrintCR.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2246
            ] ifFalse:[
12337
f7c19b610a4d changed: #exceptionHandlerFor:in:
Claus Gittinger <cg@exept.de>
parents: 12334
diff changeset
  2247
                (exceptionHandlerInContext isBehavior 
f7c19b610a4d changed: #exceptionHandlerFor:in:
Claus Gittinger <cg@exept.de>
parents: 12334
diff changeset
  2248
                and:[exceptionHandlerInContext isLoaded not]) ifTrue:[
f7c19b610a4d changed: #exceptionHandlerFor:in:
Claus Gittinger <cg@exept.de>
parents: 12334
diff changeset
  2249
                    "If the exception class is still autoloaded,
f7c19b610a4d changed: #exceptionHandlerFor:in:
Claus Gittinger <cg@exept.de>
parents: 12334
diff changeset
  2250
                     it does not accept our exception. Raising the exception would load the class"
f7c19b610a4d changed: #exceptionHandlerFor:in:
Claus Gittinger <cg@exept.de>
parents: 12334
diff changeset
  2251
                    ^ nil
f7c19b610a4d changed: #exceptionHandlerFor:in:
Claus Gittinger <cg@exept.de>
parents: 12334
diff changeset
  2252
                ] ifFalse:[
f7c19b610a4d changed: #exceptionHandlerFor:in:
Claus Gittinger <cg@exept.de>
parents: 12334
diff changeset
  2253
                    'Block [warning]: non-ExceptionHandler in on:do:on:do:-context' errorPrintCR.
f7c19b610a4d changed: #exceptionHandlerFor:in:
Claus Gittinger <cg@exept.de>
parents: 12334
diff changeset
  2254
                ]
f7c19b610a4d changed: #exceptionHandlerFor:in:
Claus Gittinger <cg@exept.de>
parents: 12334
diff changeset
  2255
            ].
f7c19b610a4d changed: #exceptionHandlerFor:in:
Claus Gittinger <cg@exept.de>
parents: 12334
diff changeset
  2256
            aContext fullPrintString errorPrintCR.
f7c19b610a4d changed: #exceptionHandlerFor:in:
Claus Gittinger <cg@exept.de>
parents: 12334
diff changeset
  2257
            self breakPoint:#cg.
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2258
            ^ nil.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2259
        ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2260
        (exceptionHandlerInContext accepts:exceptionCreator) ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2261
            ^ exceptionHandlerInContext.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2262
        ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2263
        ^ nil.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2264
    ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2265
11338
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2266
    "aContext selector must be #on:do: , #on:do:ensure: or #valueWithExceptionHandler:"
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2267
    ^ aContext argAt:1.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2268
!
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2269
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2270
handlerForSignal:exceptionHandler context:theContext originator:originator
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2271
    "answer the handler block for the exceptionHandler from originator.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2272
     The handler block is retrieved from aContext.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2273
     Answer nil if the exceptionHandler is not handled."
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2274
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2275
    |selector exceptionHandlerInContext|
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2276
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2277
    selector := theContext selector.
11338
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2278
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2279
    (selector == #on:do:
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2280
    or:[ selector == #on:do:ensure: ]) ifTrue:[
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2281
        exceptionHandlerInContext := theContext argAt:1.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2282
        exceptionHandlerInContext isExceptionHandler ifFalse:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2283
            exceptionHandlerInContext isNil ifTrue:[
8723
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  2284
                'Block [warning]: nil ExceptionHandler in on:do:on:do:-context' errorPrintCR.
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  2285
            ] ifFalse:[(exceptionHandlerInContext isBehavior 
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  2286
                        and:[exceptionHandlerInContext isLoaded not]) ifTrue:[
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  2287
                "If the exception class is still autoloaded,
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  2288
                 it does not accept our exception. Raising the exception would load the class"
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  2289
                ^ nil
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2290
            ] ifFalse:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2291
                'Block [warning]: non-ExceptionHandler in on:do:-context' errorPrintCR.
8723
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  2292
            ]].
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2293
            theContext fullPrint.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2294
            ^ nil.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2295
        ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2296
        (exceptionHandlerInContext == exceptionHandler 
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2297
         or:[exceptionHandlerInContext accepts:exceptionHandler]) ifTrue:[
11638
20a63a6bf2fb changed #handlerForSignal:context:originator:
Stefan Vogel <sv@exept.de>
parents: 11603
diff changeset
  2298
            ^ (theContext argAt:2) ? [nil].
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2299
        ].
11338
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2300
        ^ nil
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2301
    ].
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2302
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2303
    selector == #on:do:on:do: ifTrue:[
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2304
        exceptionHandlerInContext := theContext argAt:1.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2305
        exceptionHandlerInContext isExceptionHandler ifFalse:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2306
            exceptionHandlerInContext isNil ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2307
                'Block [warning]: nil ExceptionHandler in on:do:on:do:-context' errorPrintCR.
8723
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  2308
            ] ifFalse:[(exceptionHandlerInContext isBehavior 
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  2309
                        and:[exceptionHandlerInContext isLoaded not]) ifTrue:[
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  2310
                "If the exception class is still autoloaded,
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  2311
                 it does not accept our exception. Raising the exception would load the class"
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  2312
                ^ nil
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2313
            ] ifFalse:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2314
                'Block [warning]: non-ExceptionHandler in on:do:on:do:-context' errorPrintCR.
8723
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  2315
            ]].
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2316
            theContext fullPrint.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2317
            ^ nil.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2318
        ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2319
        (exceptionHandlerInContext == exceptionHandler 
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2320
         or:[exceptionHandlerInContext accepts:exceptionHandler]) ifTrue:[
11638
20a63a6bf2fb changed #handlerForSignal:context:originator:
Stefan Vogel <sv@exept.de>
parents: 11603
diff changeset
  2321
            ^ (theContext argAt:2) ? [nil].
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2322
        ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2323
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2324
        exceptionHandlerInContext := theContext argAt:3.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2325
        exceptionHandlerInContext isExceptionHandler ifFalse:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2326
            exceptionHandlerInContext isNil ifTrue:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2327
                'Block [warning]: nil ExceptionHandler in on:do:on:do:-context' errorPrintCR.
8723
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  2328
            ] ifFalse:[(exceptionHandlerInContext isBehavior 
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  2329
                        and:[exceptionHandlerInContext isLoaded not]) ifTrue:[
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  2330
                "If the exception class is still autoloaded,
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  2331
                 it does not accept our exception. Raising the exception would load the class"
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  2332
                ^ nil
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2333
            ] ifFalse:[
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2334
                'Block [warning]: non-ExceptionHandler in on:do:on:do:-context' errorPrintCR.
8723
ff9b4eb01fae #on:do: handle autoloaded exception classes
Stefan Vogel <sv@exept.de>
parents: 8708
diff changeset
  2335
            ]].
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2336
            theContext fullPrint.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2337
            ^ nil.
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2338
        ].
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2339
        (exceptionHandlerInContext == exceptionHandler 
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2340
         or:[exceptionHandlerInContext accepts:exceptionHandler]) ifTrue:[
11638
20a63a6bf2fb changed #handlerForSignal:context:originator:
Stefan Vogel <sv@exept.de>
parents: 11603
diff changeset
  2341
            ^ (theContext argAt:4) ? [nil].
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2342
        ].
11338
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2343
        ^ nil
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2344
    ].
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2345
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2346
    selector == #valueWithExceptionHandler: ifTrue:[
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2347
        ^ (theContext argAt:1) handlerForSignal:exceptionHandler.
11338
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2348
    ].
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2349
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2350
    "/ mhmh - should not arrive here
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2351
    ^ nil
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2352
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2353
    "Created: / 25.7.1999 / 19:52:58 / stefan"
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2354
    "Modified: / 26.7.1999 / 14:30:42 / stefan"
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2355
!
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2356
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2357
handlerProtectedBlock:doBlock inContext:context
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2358
    "set the block that is protected by an exception handler in context.
11338
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2359
     This is the receiver of the #on:do: or #valueWithExceptionHandler:.
8682
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2360
     Needed for #restartDo:"
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2361
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2362
    context receiver:doBlock
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2363
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2364
    "
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2365
      [1/0] on:Error do:[:ex| ex restartDo:[55]]
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2366
    "
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2367
! !
3bbf34191ca2 Support for Block>>#on:do:on:do:
Stefan Vogel <sv@exept.de>
parents: 8638
diff changeset
  2368
14139
0d47951108a3 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 13767
diff changeset
  2369
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2370
!Block methodsFor:'looping'!
325
claus
parents: 319
diff changeset
  2371
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2372
doUntil:aBlock
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2373
    "repeat the receiver block until aBlock evaluates to true.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2374
     The receiver is evaluated at least once.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2375
     This is the same as '... doWhile:[... not]' "
325
claus
parents: 319
diff changeset
  2376
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2377
    "this implementation is for purists ... :-)"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2378
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2379
    self value.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2380
    aBlock value ifTrue:[^ nil].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2381
    thisContext restart
325
claus
parents: 319
diff changeset
  2382
claus
parents: 319
diff changeset
  2383
    "
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2384
     |n|
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2385
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2386
     n := 1.
8602
4de3880b3d93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8440
diff changeset
  2387
     [n printCR] doUntil:[ (n := n + 1) > 5 ]
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2388
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2389
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2390
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2391
doWhile:aBlock
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2392
    "repeat the receiver block until aBlock evaluates to false.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2393
     The receiver is evaluated at least once."
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2394
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2395
    "this implementation is for purists ... :-)"
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2396
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2397
    self value.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2398
    aBlock value ifFalse:[^ nil].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2399
    thisContext restart
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2400
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2401
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2402
     |n|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2403
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2404
     n := 1.
8602
4de3880b3d93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8440
diff changeset
  2405
     [n printCR] doWhile:[ (n := n + 1) <= 5 ]
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2406
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2407
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2408
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2409
loop
1211
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  2410
    "repeat the receiver forever 
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  2411
     (the receiver block should contain a return somewhere).
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  2412
     The implementation below was inspired by a corresponding Self method."
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2413
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2414
    self value.
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2415
    thisContext restart
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2416
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2417
    "
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2418
     |n|
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2419
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2420
     n := 1.
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2421
     [
8602
4de3880b3d93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8440
diff changeset
  2422
        n printCR.
4de3880b3d93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8440
diff changeset
  2423
        n >= 10 ifTrue:[^ nil].
4de3880b3d93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8440
diff changeset
  2424
        n := n + 1
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2425
     ] loop
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2426
    "
1211
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  2427
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  2428
    "Modified: 18.4.1996 / 13:50:40 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2429
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2430
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2431
loopWithExit
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2432
    "the receiver must be a block of one argument.  It is evaluated in a loop forever, 
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2433
     and is passed a block, which, if sent a value:-message, will exit the receiver block, 
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2434
     returning the parameter of the value:-message. Used for loops with exit in the middle.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2435
     Inspired by a corresponding Self method."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2436
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2437
    |exitBlock|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2438
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2439
    exitBlock := [:exitValue | ^ exitValue].
14683
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2440
    [true] whileTrue:[ self value:exitBlock ]
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2441
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2442
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2443
     |i|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2444
     i := 1.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2445
     [:exit |
14683
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2446
        Transcript showCR:i.
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2447
        i == 5 ifTrue:[exit value:'thats it'].
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2448
        i := i + 1
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2449
     ] loopWithExit
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2450
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2451
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2452
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2453
repeat
1211
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  2454
    "repeat the receiver forever - same as loop, for ST-80 compatibility.
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  2455
      (the receiver block should contain a return somewhere)."
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2456
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2457
    self value.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2458
    thisContext restart
1211
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  2459
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  2460
    "Modified: 18.4.1996 / 13:50:55 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2461
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2462
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2463
valueWithExit
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2464
    "the receiver must be a block of one argument.  It is evaluated, and is passed a block,
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2465
     which, if sent a value:-message, will exit the receiver block, returning the parameter of the 
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2466
     value:-message. Used for premature returns to the caller.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2467
     Taken from a manchester goody (a similar construct also appears in Self)."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2468
1211
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  2469
    ^ self value:[:exitValue | ^exitValue]
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2470
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2471
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2472
     [:exit |
2238
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
  2473
	1 to:10 do:[:i |
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
  2474
	    Transcript showCR:i.
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
  2475
	    i == 5 ifTrue:[exit value:'thats it']
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
  2476
	].
771e3c99a505 extracted
Claus Gittinger <cg@exept.de>
parents: 2237
diff changeset
  2477
	'regular block-value; never returned'
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2478
     ] valueWithExit
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2479
    "
1211
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  2480
c5bdb3fc3cb4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
  2481
    "Modified: 18.4.1996 / 13:51:38 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2482
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2483
5215
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2484
valueWithRestart
14683
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2485
    "the receiver must be a block of one argument.  It is evaluated, and is passed a block,
15244
5387170e06a4 class: Block
Stefan Vogel <sv@exept.de>
parents: 15119
diff changeset
  2486
     which, if sent a value-message, will restart the receiver block from the beginning"
5387170e06a4 class: Block
Stefan Vogel <sv@exept.de>
parents: 15119
diff changeset
  2487
15316
427c759f8805 class: Block
Claus Gittinger <cg@exept.de>
parents: 15294
diff changeset
  2488
    |myContext restartAction|
5215
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2489
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2490
    myContext := thisContext.
15320
4f0d5b67d783 class: Block
Claus Gittinger <cg@exept.de>
parents: 15316
diff changeset
  2491
    restartAction := [ myContext unwindAndRestart ].
15316
427c759f8805 class: Block
Claus Gittinger <cg@exept.de>
parents: 15294
diff changeset
  2492
    ^ self value:restartAction.
5215
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2493
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2494
    "
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2495
     [:restart |
14683
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2496
        (self confirm:'try again ?') ifTrue:[
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2497
            restart value.
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2498
        ]
5215
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2499
     ] valueWithRestart
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2500
    "
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2501
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2502
    "Modified: / 25.1.2000 / 21:47:50 / cg"
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2503
!
888c106f3240 added valueWithRestart
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  2504
14683
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2505
valueWithRestartAndExit
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2506
    "the receiver must be a block of two arguments, a restart and an exit block.
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2507
     See description of valueWithExit and valueWithRestart for their use"
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2508
15316
427c759f8805 class: Block
Claus Gittinger <cg@exept.de>
parents: 15294
diff changeset
  2509
    |myContext restartAction|
14683
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2510
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2511
    myContext := thisContext.
15320
4f0d5b67d783 class: Block
Claus Gittinger <cg@exept.de>
parents: 15316
diff changeset
  2512
    restartAction := [ myContext unwindAndRestart ].
15316
427c759f8805 class: Block
Claus Gittinger <cg@exept.de>
parents: 15294
diff changeset
  2513
    ^ self value:restartAction value:[:exitValue | ^exitValue].
14683
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2514
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2515
    "
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2516
     [:restart :exit |
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2517
        |i|
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2518
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2519
        i := 0.
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2520
        [
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2521
            i := i + 1.
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2522
            (self confirm:('i is ',i printString,'; start over ?')) ifTrue:[
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2523
                restart value.
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2524
            ].
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2525
            (self confirm:'enough ?') ifTrue:[
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2526
                exit value:nil.
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2527
            ].
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2528
        ] loop
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2529
     ] valueWithRestartAndExit
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2530
    "
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2531
!
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  2532
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2533
whileFalse
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2534
    "evaluate the receiver while it evaluates to false (ST80 compatibility)"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2535
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2536
    "this implementation is for purists ... :-)"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2537
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2538
    self value ifTrue:[^ nil].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2539
    thisContext restart
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2540
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2541
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2542
     |n|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2543
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2544
     n := 1.
8602
4de3880b3d93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8440
diff changeset
  2545
     [n printCR. (n := n + 1) > 10] whileFalse
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2546
    "
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2547
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2548
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2549
whileFalse:aBlock
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2550
    "evaluate the argument, aBlock while the receiver evaluates to false.
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2551
     - usually open coded by compilers, but needed here for #perform 
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2552
       and expression evaluation."
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2553
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2554
    "this implementation is for purists ... :-)"
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2555
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2556
    self value ifTrue:[^ nil].
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2557
    aBlock value.
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2558
    thisContext restart
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2559
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2560
    "
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2561
     |n|
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2562
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2563
     n := 1.
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2564
     [n > 10] whileFalse:[
8602
4de3880b3d93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8440
diff changeset
  2565
        n printCR.
4de3880b3d93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8440
diff changeset
  2566
        n := n + 1
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2567
     ]
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2568
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2569
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2570
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2571
whileTrue
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2572
    "evaluate the receiver while it evaluates to true (ST80 compatibility)"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2573
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2574
    "this implementation is for purists ... :-)"
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2575
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2576
    self value ifFalse:[^ nil].
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2577
    thisContext restart
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2578
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2579
    "
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2580
     |n|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2581
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2582
     n := 1.
8602
4de3880b3d93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8440
diff changeset
  2583
     [n printCR. (n := n + 1) <= 10] whileTrue
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2584
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2585
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2586
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2587
whileTrue:aBlock
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2588
    "evaluate the argument, aBlock while the receiver evaluates to true.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2589
     - usually open coded by compilers, but needed here for #perform 
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2590
       and expression evaluation."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2591
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2592
    "this implementation is for purists ... :-)"
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2593
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2594
    self value ifFalse:[^ nil].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2595
    aBlock value.
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2596
    thisContext restart
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2597
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2598
    "
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2599
     |n|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2600
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2601
     n := 1.
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2602
     [n <= 10] whileTrue:[
8602
4de3880b3d93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8440
diff changeset
  2603
        n printCR.
4de3880b3d93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8440
diff changeset
  2604
        n := n + 1
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2605
     ]
68
59faa75185ba *** empty log message ***
claus
parents: 67
diff changeset
  2606
    "
67
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2607
! !
e52341804063 *** empty log message ***
claus
parents: 54
diff changeset
  2608
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2609
!Block methodsFor:'parallel evaluation'!
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2610
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2611
futureValue
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2612
    "Fork a synchronised evaluation of myself. 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2613
     Starts the evaluation in parallel now, but synchronizes
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2614
     any access to wait until the result is computed."
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2615
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2616
    ^ Future new block:self
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2617
!
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2618
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2619
futureValue:aValue 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2620
    "Fork a synchronised evaluation of myself. 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2621
     Starts the evaluation in parallel now, but synchronizes
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2622
     any access to wait until the result is computed."
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2623
    
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2624
    ^ Future new block:self value:aValue
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2625
!
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2626
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2627
futureValue:aValue value:anotherValue 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2628
    "Fork a synchronised evaluation of myself. 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2629
     Starts the evaluation in parallel now, but synchronizes
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2630
     any access to wait until the result is computed."
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2631
    
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2632
    ^ Future new 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2633
        block:self
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2634
        value:aValue
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2635
        value:anotherValue
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2636
!
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2637
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2638
futureValue:aValue value:anotherValue value:bValue 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2639
    "Fork a synchronised evaluation of myself. 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2640
     Starts the evaluation in parallel now, but synchronizes
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2641
     any access to wait until the result is computed."
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2642
    
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2643
    ^ Future new 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2644
        block:self
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2645
        value:aValue
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2646
        value:anotherValue
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2647
        value:bValue
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2648
!
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2649
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2650
futureValueWithArguments:anArray 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2651
    "Fork a synchronised evaluation of myself. 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2652
     Starts the evaluation in parallel now, but synchronizes
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2653
     any access to wait until the result is computed."
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2654
    
13767
138ba7e788b8 added: #deferredValueAt:
Claus Gittinger <cg@exept.de>
parents: 13517
diff changeset
  2655
    ^ Future new 
138ba7e788b8 added: #deferredValueAt:
Claus Gittinger <cg@exept.de>
parents: 13517
diff changeset
  2656
        block:self 
138ba7e788b8 added: #deferredValueAt:
Claus Gittinger <cg@exept.de>
parents: 13517
diff changeset
  2657
        valueWithArguments:anArray
138ba7e788b8 added: #deferredValueAt:
Claus Gittinger <cg@exept.de>
parents: 13517
diff changeset
  2658
138ba7e788b8 added: #deferredValueAt:
Claus Gittinger <cg@exept.de>
parents: 13517
diff changeset
  2659
    "Modified (format): / 04-10-2011 / 14:55:40 / cg"
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2660
!
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2661
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2662
lazyValue
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2663
    "Fork a synchronised evaluation of myself. Only starts
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2664
     the evaluation when the result is requested."
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2665
    
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2666
    ^ Lazy new block:self
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2667
!
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2668
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2669
lazyValue:aValue 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2670
    "Fork a synchronised evaluation of myself. Only starts
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2671
     the evaluation when the result is requested."
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2672
    
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2673
    ^ Lazy new block:self value:aValue
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2674
!
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2675
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2676
lazyValue:aValue value:anotherValue 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2677
    "Fork a synchronised evaluation of myself. Only starts
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2678
     the evaluation when the result is requested."
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2679
    
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2680
    ^ Lazy new 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2681
        block:self
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2682
        value:aValue
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2683
        value:anotherValue
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2684
!
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2685
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2686
lazyValue:aValue value:anotherValue value:bValue 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2687
    "Fork a synchronised evaluation of myself. Only starts
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2688
     the evaluation when the result is requested."
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2689
    
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2690
    ^ Lazy new 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2691
        block:self
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2692
        value:aValue
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2693
        value:anotherValue
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2694
        value:bValue
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2695
!
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2696
8708
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2697
lazyValueWithArguments:anArray 
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2698
    "Fork a synchronised evaluation of myself. Only starts
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2699
     the evaluation when the result is requested."
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2700
    
fd7eba3420e1 Dolphin compat: #deferredValue is the same as #futureValue
Stefan Vogel <sv@exept.de>
parents: 8682
diff changeset
  2701
    ^ Lazy new block:self valueWithArguments:anArray
7660
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2702
! !
1f3792fd3d37 lazy and future value moved to libbasic.
Claus Gittinger <cg@exept.de>
parents: 7602
diff changeset
  2703
92
0c73b48551ac *** empty log message ***
claus
parents: 83
diff changeset
  2704
!Block methodsFor:'printing & storing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2705
7151
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
  2706
printBlockBracketsOn:aStream
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
  2707
    aStream nextPutAll:'[]'. 
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
  2708
!
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
  2709
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2710
printOn:aStream
44
b262907c93ea *** empty log message ***
claus
parents: 22
diff changeset
  2711
    "append a a printed representation of the block to aStream"
b262907c93ea *** empty log message ***
claus
parents: 22
diff changeset
  2712
6633
ef36668d5c96 Remove unused method var
Stefan Vogel <sv@exept.de>
parents: 6628
diff changeset
  2713
    |h sel methodClass|
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  2714
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  2715
    "cheap blocks have no home context, but a method instead"
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  2716
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  2717
    (home isNil or:[home isContext not]) ifTrue:[
6633
ef36668d5c96 Remove unused method var
Stefan Vogel <sv@exept.de>
parents: 6628
diff changeset
  2718
        aStream nextPutAll:'[] in '.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2719
6633
ef36668d5c96 Remove unused method var
Stefan Vogel <sv@exept.de>
parents: 6628
diff changeset
  2720
        "
ef36668d5c96 Remove unused method var
Stefan Vogel <sv@exept.de>
parents: 6628
diff changeset
  2721
         currently, some cheap blocks don't know where they have been created
ef36668d5c96 Remove unused method var
Stefan Vogel <sv@exept.de>
parents: 6628
diff changeset
  2722
        "
ef36668d5c96 Remove unused method var
Stefan Vogel <sv@exept.de>
parents: 6628
diff changeset
  2723
        aStream nextPutAll:' ??? (optimized)'.
ef36668d5c96 Remove unused method var
Stefan Vogel <sv@exept.de>
parents: 6628
diff changeset
  2724
        ^ self
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  2725
    ].
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  2726
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  2727
    "a full blown block (with home, but without method)"
7151
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
  2728
    self printBlockBracketsOn:aStream.
a112bb7a6748 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7149
diff changeset
  2729
    aStream nextPutAll:' in '. 
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2730
    h := self methodHome.
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2731
    sel := h selector.
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2732
"/ old:
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2733
"/    home receiver class name printOn:aStream.
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2734
"/ new:
212
3edd10edefaf *** empty log message ***
claus
parents: 161
diff changeset
  2735
"/    (h searchClass whichClassImplements:sel) name printOn:aStream.
213
3b56a17534fd *** empty log message ***
claus
parents: 212
diff changeset
  2736
    methodClass := h methodClass.
3b56a17534fd *** empty log message ***
claus
parents: 212
diff changeset
  2737
    methodClass isNil ifTrue:[
6633
ef36668d5c96 Remove unused method var
Stefan Vogel <sv@exept.de>
parents: 6628
diff changeset
  2738
        'UnboundMethod' printOn:aStream.
213
3b56a17534fd *** empty log message ***
claus
parents: 212
diff changeset
  2739
    ] ifFalse:[
6633
ef36668d5c96 Remove unused method var
Stefan Vogel <sv@exept.de>
parents: 6628
diff changeset
  2740
        methodClass name printOn:aStream.
213
3b56a17534fd *** empty log message ***
claus
parents: 212
diff changeset
  2741
    ].
7157
935eaabbe6dc printString now "... in className >> sel"
Claus Gittinger <cg@exept.de>
parents: 7151
diff changeset
  2742
    aStream nextPutAll:'>>'.
154
d4236ec280a6 *** empty log message ***
claus
parents: 138
diff changeset
  2743
    sel printOn:aStream.
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 48
diff changeset
  2744
2841
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2745
"/
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2746
"/    aStream nextPutAll:'[] in '.
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2747
"/    homeClass := home containingClass.
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2748
"/    homeClass notNil ifTrue:[
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2749
"/      homeClass name printOn:aStream.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2750
"/      aStream space.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2751
"/      (homeClass selectorForMethod:home) printOn:aStream
2841
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2752
"/    ] ifFalse:[
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2753
"/      aStream nextPutAll:' ???' 
2841
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2754
"/    ]
d3cab7c7d334 allow non-array in valueWithArguments
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  2755
"/
9253
a7d4f72181f2 no storeString
sr
parents: 9145
diff changeset
  2756
!
a7d4f72181f2 no storeString
sr
parents: 9145
diff changeset
  2757
a7d4f72181f2 no storeString
sr
parents: 9145
diff changeset
  2758
storeOn:aStream
15850
3b51942600ce class: Block
Stefan Vogel <sv@exept.de>
parents: 15532
diff changeset
  2759
    MethodNotAppropriateError raiseRequestErrorString:'Blocks cannot be stored (yet)'.
9287
9fd70605f3a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9253
diff changeset
  2760
    self printOn:aStream.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2761
! !
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2762
7257
b9f0fb923c72 method category rename
Claus Gittinger <cg@exept.de>
parents: 7157
diff changeset
  2763
!Block methodsFor:'private-accessing'!
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2764
5766
64d22218e98b must ensure that nArgs and nVar flag setting is correct
Claus Gittinger <cg@exept.de>
parents: 5744
diff changeset
  2765
byteCode:bCode numArgs:numArgs numVars:numVars  numStack:numStack sourcePosition:srcPos initialPC:iPC literals:lits
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2766
    "set all relevant internals.
1773
442d1b73ecb9 no longer allow Blocks with a dynamic-bit to be created
Claus Gittinger <cg@exept.de>
parents: 1672
diff changeset
  2767
     DANGER ALERT: this interface is strictly private."
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2768
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2769
    byteCode := bCode.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2770
    nargs := numArgs.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2771
    sourcePos := srcPos.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2772
    initialPC := iPC.
1777
150a1516ef75 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1773
diff changeset
  2773
    flags := 0.
2542
555749f035f4 need stackSize when creating blocks.
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
  2774
    self stackSize:numStack.
1493
33e226c7d187 Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2775
    self literals:lits.
5766
64d22218e98b must ensure that nArgs and nVar flag setting is correct
Claus Gittinger <cg@exept.de>
parents: 5744
diff changeset
  2776
    self numberOfArgs:numArgs.   "/ must set the compiledCode flags as well
64d22218e98b must ensure that nArgs and nVar flag setting is correct
Claus Gittinger <cg@exept.de>
parents: 5744
diff changeset
  2777
    self numberOfVars:numVars.   "/ must set the compiledCode flags as well
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2778
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2779
    "Modified: 23.4.1996 / 16:05:30 / cg"
1493
33e226c7d187 Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2780
    "Modified: 24.6.1996 / 12:37:37 / stefan"
2542
555749f035f4 need stackSize when creating blocks.
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
  2781
    "Created: 13.4.1997 / 00:00:57 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2782
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2783
5779
d7dcb078cc74 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5767
diff changeset
  2784
initialPC 
d7dcb078cc74 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5767
diff changeset
  2785
    "return the initial pc for evaluation."
d7dcb078cc74 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5767
diff changeset
  2786
d7dcb078cc74 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5767
diff changeset
  2787
    ^ initialPC
d7dcb078cc74 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5767
diff changeset
  2788
!
d7dcb078cc74 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5767
diff changeset
  2789
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2790
initialPC:initial 
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2791
    "set the initial pc for evaluation.
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2792
     DANGER ALERT: this interface is for the compiler only."
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2793
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2794
    initialPC := initial
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2795
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2796
    "Modified: 23.4.1996 / 16:05:39 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2797
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2798
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2799
numArgs:numArgs
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2800
    "set the number of arguments the receiver expects for evaluation.
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2801
     DANGER ALERT: this interface is for the compiler only."
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2802
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2803
    nargs := numArgs
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2804
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2805
    "Modified: 23.4.1996 / 16:05:52 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2806
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2807
5744
229241968e2a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5666
diff changeset
  2808
setHome:aContext
229241968e2a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5666
diff changeset
  2809
    home := aContext
229241968e2a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5666
diff changeset
  2810
!
229241968e2a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5666
diff changeset
  2811
7323
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2812
source 
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2813
    |m|
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2814
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2815
    sourcePos isString ifTrue:[    "/ misuses the sourcePosition slot
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2816
        ^ sourcePos
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2817
    ].
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2818
    m := self method.
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2819
    m notNil ifTrue:[
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2820
        ^ m source
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2821
    ].
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2822
    ^ nil
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2823
!
01ec95be5208 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  2824
6981
3061136215fc source: - temporary interface
penk
parents: 6866
diff changeset
  2825
source:aString 
3061136215fc source: - temporary interface
penk
parents: 6866
diff changeset
  2826
    "set the source - only to be used, if the block is not contained in a method.
3061136215fc source: - temporary interface
penk
parents: 6866
diff changeset
  2827
     This interface is for knowledgable users only."
3061136215fc source: - temporary interface
penk
parents: 6866
diff changeset
  2828
3061136215fc source: - temporary interface
penk
parents: 6866
diff changeset
  2829
    sourcePos := aString  "/ misuse the sourcePosition slot
3061136215fc source: - temporary interface
penk
parents: 6866
diff changeset
  2830
!
3061136215fc source: - temporary interface
penk
parents: 6866
diff changeset
  2831
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2832
sourcePosition:position 
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2833
    "set the position of the source within my method.
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2834
     This interface is for the compiler only."
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2835
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2836
    sourcePos := position
1265
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2837
371158fd54bc commentary
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
  2838
    "Modified: 23.4.1996 / 16:06:19 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2839
! !
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2840
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2841
!Block methodsFor:'privileged evaluation'!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2842
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2843
valueUninterruptably
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2844
    "evaluate the receiver with interrupts blocked.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2845
     This does not prevent preemption by a higher priority processes
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2846
     if any becomes runnable due to the evaluation of the receiver
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2847
     (i.e. if a semaphore is signalled)."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2848
2301
e3976a1e863a in valueUninterruptably:
Claus Gittinger <cg@exept.de>
parents: 2286
diff changeset
  2849
    "we must keep track of blocking-state if this is called nested"
e3976a1e863a in valueUninterruptably:
Claus Gittinger <cg@exept.de>
parents: 2286
diff changeset
  2850
    (OperatingSystem blockInterrupts) ifTrue:[
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2851
	"/ already blocked.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2852
	^ self value
2301
e3976a1e863a in valueUninterruptably:
Claus Gittinger <cg@exept.de>
parents: 2286
diff changeset
  2853
    ].
864
9d034b442868 faster uninterruptablyDo:
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
  2854
6257
f77941a61a12 Fix comments. Use #ensure: instead of #valueNowOrOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6236
diff changeset
  2855
    ^ self ensure:[OperatingSystem unblockInterrupts].
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2856
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2857
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2858
valueUnpreemptively
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2859
    "evaluate the receiver without the possiblity of preemption
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2860
     (i.e. at a very high priority)"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2861
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2862
    |oldPrio activeProcess|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2863
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2864
    activeProcess := Processor activeProcess.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2865
    oldPrio := activeProcess changePriority:(Processor highestPriority).
6257
f77941a61a12 Fix comments. Use #ensure: instead of #valueNowOrOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6236
diff changeset
  2866
    ^ self ensure:[
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  2867
	activeProcess priority:oldPrio
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2868
    ]
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2869
! !
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2870
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2871
!Block methodsFor:'process creation'!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2872
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2873
fork
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2874
    "create a new process executing the receiver at the current priority."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2875
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2876
    ^ self newProcess resume
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2877
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2878
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2879
forkAt:priority
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2880
    "create a new process executing the receiver at a different priority."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2881
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2882
    ^ (self newProcess priority:priority) resume
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2883
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2884
6609
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2885
forkNamed:aString
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2886
    "create a new process, give it a name and let it start 
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2887
     executing the receiver at the current priority."
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2888
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2889
    |newProcess|
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2890
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2891
    newProcess := self newProcess. 
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2892
    newProcess name:aString.
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2893
    newProcess resume.
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2894
    ^ newProcess.
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2895
!
acdfa5f51c98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6608
diff changeset
  2896
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2897
forkWith:argArray
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2898
    "create a new process executing the receiver,
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2899
     passing elements in argArray as arguments to the receiver block."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2900
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2901
    ^ [self valueWithArguments:argArray] fork.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2902
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2903
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2904
newProcess
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2905
    "create a new (unscheduled) process executing the receiver"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2906
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2907
    ^ Process for:self priority:(Processor activePriority)
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2908
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2909
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2910
newProcessWithArguments:argArray
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2911
    "create a new (unscheduled) process executing the receiver,
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2912
     passing the elements in argArray as arguments to the receiver block."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2913
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2914
    ^ [self valueWithArguments:argArray] newProcess
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2915
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2916
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2917
promise
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2918
    "create a promise on the receiver. The promise will evaluate the
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2919
     receiver and promise to return the value with the #value message.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2920
     The evaluation will be performed as a separate process.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2921
     Asking the promise for its value will either block the asking process
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2922
     (if the evaluation has not yet been finished) or return the value
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2923
     immediately."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2924
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2925
    ^ Promise value:self
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2926
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2927
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2928
     |p|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2929
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2930
     p := [1000 factorial] promise.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2931
     'do something else ...'.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2932
     p value
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2933
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2934
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2935
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2936
promiseAt:prio
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2937
    "create a promise on the receiver. The promise will evaluate the
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2938
     receiver and promise to return the value with the #value message.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2939
     The evaluation will be performed as a separate process running at prio.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2940
     Asking the promise for its value will either block the asking process
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2941
     (if the evaluation has not yet been finished) or return the value
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2942
     immediately."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2943
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2944
    ^ Promise value:self priority:prio
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2945
! !
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2946
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2947
!Block methodsFor:'testing'!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2948
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2949
isBlock
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2950
    "return true, if this is a block - yes I am"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2951
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2952
    ^ true
2237
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2953
!
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2954
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2955
isVarArgBlock
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2956
    "return true, if this block accepts a variable number of arguments"
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2957
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2958
    ^ false
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2959
d54ee88b8106 VarArgBlock as a private subclass
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2960
    "Created: 23.1.1997 / 04:59:51 / cg"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2961
! !
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2962
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2963
!Block methodsFor:'unwinding'!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  2964
4479
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  2965
unwindHandlerInContext:aContext
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  2966
    "given a context which has been marked for unwind,
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  2967
     retrieve the handler block.
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  2968
     This avoids hardwiring access to the first argument in
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  2969
     #unwind methods (and theoretically allows for other unwinding
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  2970
     methods to be added)"
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  2971
11338
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2972
    |selector|
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2973
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2974
    selector := aContext selector.
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2975
    selector == #'value:onUnwindDo:' ifTrue:[
6608
fb064735d73c Comments
Stefan Vogel <sv@exept.de>
parents: 6587
diff changeset
  2976
        ^ aContext argAt:2
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2977
    ].
11338
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2978
    selector == #'on:do:ensure:' ifTrue:[
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2979
        ^ aContext argAt:3
5c599d7dfd4c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10942
diff changeset
  2980
    ].
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2981
4479
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  2982
    "/ for now, only #valueNowOrOnUnwindDo:
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2983
    "/          or   #valueOnUnwindDo:
5666
de56e39714da inlined unwind setup into #ensure:
Claus Gittinger <cg@exept.de>
parents: 5349
diff changeset
  2984
    "/          or   #ensure:
6608
fb064735d73c Comments
Stefan Vogel <sv@exept.de>
parents: 6587
diff changeset
  2985
    "/          or   #ifCurtailed:
4479
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  2986
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  2987
    ^ aContext argAt:1
6257
f77941a61a12 Fix comments. Use #ensure: instead of #valueNowOrOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6236
diff changeset
  2988
! !
f77941a61a12 Fix comments. Use #ensure: instead of #valueNowOrOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6236
diff changeset
  2989
f77941a61a12 Fix comments. Use #ensure: instead of #valueNowOrOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6236
diff changeset
  2990
!Block methodsFor:'unwinding-old'!
4479
6915eb8eeeff added query for unwindHandler (like contexts ask for handler)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
  2991
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2992
value:arg onUnwindDo:aBlock
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2993
    "evaluate the receiver, passing it one argument
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2994
     - when some method sent within unwinds (i.e. does
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2995
     a long return), evaluate the argument, aBlock.
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2996
     This is used to make certain that cleanup actions (for example closing files etc.) are
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2997
     executed regardless of error actions"
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2998
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  2999
    <exception: #unwind>
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3000
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3001
    |v|
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3002
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3003
    "/ thisContext markForUnwind. -- same as above pragma
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3004
    v := self value:arg.       "the real logic is in Context>>unwind"
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3005
    thisContext unmarkForUnwind.
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3006
    ^ v
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3007
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3008
    "
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3009
     |s|
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3010
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3011
     s := 'Makefile' asFilename readStream.
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3012
     [:arg |
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3013
	^ self
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3014
     ] value:12345 onUnwindDo:[
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3015
	Transcript showCR:'closing the stream - even though a return occurred'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3016
	s close
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3017
     ]
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3018
    "
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3019
    "
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3020
     [
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3021
	 |s|
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3022
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3023
	 s := 'Makefile' asFilename readStream.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3024
	 [:arg |
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3025
	    Processor activeProcess terminate
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3026
	 ] value:12345 onUnwindDo:[
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3027
	    Transcript showCR:'closing the stream - even though process was terminated'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3028
	    s close
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3029
	 ]
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3030
     ] fork
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3031
    "
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3032
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3033
!
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3034
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3035
valueNowOrOnUnwindDo:aBlock
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3036
    "evaluate the receiver - after that, or when some method sent within unwinds (i.e. does
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3037
     a long return), evaluate the argument, aBlock.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3038
     This is used to make certain that cleanup actions (for example closing files etc.) are
6257
f77941a61a12 Fix comments. Use #ensure: instead of #valueNowOrOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6236
diff changeset
  3039
     executed regardless of error actions.
f77941a61a12 Fix comments. Use #ensure: instead of #valueNowOrOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6236
diff changeset
  3040
     Same as the more modern #ensure:"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3041
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  3042
    <exception: #unwind>
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  3043
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3044
    |v|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3045
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  3046
    "/ thisContext markForUnwind. -- same as above pragma
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3047
    v := self value.       "the real logic is in Context>>unwind"
1187
619ff79bc665 valueNowOrOnUnwindDo: don't execute unwind block when block is currently executed 'now'.
Stefan Vogel <sv@exept.de>
parents: 1181
diff changeset
  3048
    thisContext unmarkForUnwind.
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3049
    aBlock value.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3050
    ^ v
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3051
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3052
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3053
     in the following example, f will be closed even if the block
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3054
     returns with 'oops'. There are many more applications of this kind
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3055
     found in the system.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3056
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3057
    "
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3058
     |f|
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3059
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3060
     f := 'Makefile' asFilename readStream.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3061
     [
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3062
	l := f nextLine.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3063
	l isNil ifTrue:[^ 'oops']
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3064
     ] valueNowOrOnUnwindDo:[
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3065
	f close
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3066
     ]
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3067
    "
1187
619ff79bc665 valueNowOrOnUnwindDo: don't execute unwind block when block is currently executed 'now'.
Stefan Vogel <sv@exept.de>
parents: 1181
diff changeset
  3068
619ff79bc665 valueNowOrOnUnwindDo: don't execute unwind block when block is currently executed 'now'.
Stefan Vogel <sv@exept.de>
parents: 1181
diff changeset
  3069
    "Modified: 16.4.1996 / 11:05:26 / stefan"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3070
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3071
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3072
valueOnUnwindDo:aBlock
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3073
    "evaluate the receiver - when some method sent within unwinds (i.e. does
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3074
     a long return), evaluate the argument, aBlock.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3075
     This is used to make certain that cleanup actions (for example closing files etc.) are
6257
f77941a61a12 Fix comments. Use #ensure: instead of #valueNowOrOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6236
diff changeset
  3076
     executed regardless of error actions
f77941a61a12 Fix comments. Use #ensure: instead of #valueNowOrOnUnwindDo:
Stefan Vogel <sv@exept.de>
parents: 6236
diff changeset
  3077
     Same as the more modern #ifCurtailed:"
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3078
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  3079
    <exception: #unwind>
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  3080
2286
e04f03c7cb75 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2241
diff changeset
  3081
    |v|
e04f03c7cb75 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2241
diff changeset
  3082
4491
5041cae5651c use new pragma to flag exception frames.
Claus Gittinger <cg@exept.de>
parents: 4479
diff changeset
  3083
    "/ thisContext markForUnwind. -- same as above pragma
2286
e04f03c7cb75 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2241
diff changeset
  3084
    v := self value.       "the real logic is in Context>>unwind"
e04f03c7cb75 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2241
diff changeset
  3085
    thisContext unmarkForUnwind.
e04f03c7cb75 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2241
diff changeset
  3086
    ^ v
e04f03c7cb75 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2241
diff changeset
  3087
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3088
    "
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3089
     |s|
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3090
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3091
     s := 'Makefile' asFilename readStream.
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3092
     [
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3093
	^ self
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3094
     ] valueOnUnwindDo:[
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3095
	Transcript showCR:'closing the stream - even though a return occurred'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3096
	s close
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3097
     ]
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3098
    "
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3099
    "
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3100
     [
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3101
	 |s|
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3102
6498
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3103
	 s := 'Makefile' asFilename readStream.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3104
	 [
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3105
	    Processor activeProcess terminate
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3106
	 ] valueOnUnwindDo:[
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3107
	    Transcript showCR:'closing the stream - even though process was terminated'.
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3108
	    s close
3db82d6e6146 use arrayVal macro; slightly shorter code for value (switch on MKSMALLINT)
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
  3109
	 ]
4896
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3110
     ] fork
f9c204dadaa8 added #value:onUnwindDo:
Claus Gittinger <cg@exept.de>
parents: 4547
diff changeset
  3111
    "
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3112
! !
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3113
8394
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8009
diff changeset
  3114
!Block methodsFor:'visiting'!
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8009
diff changeset
  3115
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8009
diff changeset
  3116
acceptVisitor:aVisitor with:aParameter
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8009
diff changeset
  3117
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8009
diff changeset
  3118
    ^ aVisitor visitBlock:self with:aParameter
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8009
diff changeset
  3119
! !
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8009
diff changeset
  3120
1773
442d1b73ecb9 no longer allow Blocks with a dynamic-bit to be created
Claus Gittinger <cg@exept.de>
parents: 1672
diff changeset
  3121
!Block class methodsFor:'documentation'!
1181
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
  3122
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
  3123
version
15850
3b51942600ce class: Block
Stefan Vogel <sv@exept.de>
parents: 15532
diff changeset
  3124
    ^ '$Header: /cvs/stx/stx/libbasic/Block.st,v 1.200 2013-12-06 14:08:55 stefan Exp $'
12118
41ee8ff1908e comment/format in: #deferredValue
Claus Gittinger <cg@exept.de>
parents: 11998
diff changeset
  3125
!
41ee8ff1908e comment/format in: #deferredValue
Claus Gittinger <cg@exept.de>
parents: 11998
diff changeset
  3126
41ee8ff1908e comment/format in: #deferredValue
Claus Gittinger <cg@exept.de>
parents: 11998
diff changeset
  3127
version_CVS
15850
3b51942600ce class: Block
Stefan Vogel <sv@exept.de>
parents: 15532
diff changeset
  3128
    ^ '$Header: /cvs/stx/stx/libbasic/Block.st,v 1.200 2013-12-06 14:08:55 stefan Exp $'
1181
6637fee79d7b only Block & CheapBlock are fixed - subclasses may look different
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
  3129
! !
6785
372a6bdc2224 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6750
diff changeset
  3130
14683
2bed35ae5ad9 class: Block
Claus Gittinger <cg@exept.de>
parents: 14530
diff changeset
  3131
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 552
diff changeset
  3132
Block initialize!