Is there a term for all the Method/Block Contexts that are invoked prior to a DoIt getting to

Compiler>>evaluate: textOrStream in: aContext to: receiver notifying: aRequestor ifFail: failBlock logged: logFlag

?

I know this is just semantics, but before there is a lot of "Context" going on before the first MethodContext of


| factorial |

factorial := [:n  |
    n = 1
    ifTrue:[ 1 ]
    ifFalse:[ (factorial copy value: n-1) * n]].
(1 to: 3) collect: factorial copy .

is activated.

Just curious if there is a term for that that people use.

thx.

ttty