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