Go to the first, previous, next, last section, table of contents.


JOB_STACKFRAME_HANDLERS

JOB_STACKFRAME_HANDLERS stackframes in context will look as follows:

  job_RunState.l   ->   size in bytes of below stackframe
                        JOB_STACKFRAME_HANDLERS
			...
                        function1
                        event1
                        function0
                        event0
                        size in bytes of above stackframe

                        size in bytes of below stackframe
                        JOB_STACKFRAME_NORMAL   
                        local_variable_N
			...
			local_variable_1
  job_RunState.v   ->	local_variable_0
                        compiledFunction for this frame.
                        programCounter for this frame.
                        size in bytes of above stackframe

While a ]with-handlers{ clause is executing, a HANDLERS stackframe holds the active handlers and their corresponding events.

A full getStackframe[ HANDLERS frame result looks like:

:owner                 object
:kind                  :handlers
:handlers              N+1
0		       event0
1		       function0
2		       event1
3		       function1
...		       ...
2*N		       eventN
2*N+1		       functionN


Go to the first, previous, next, last section, table of contents.