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