These accessors retrieve properties of frames on the call stack. The prefix indicates for which frame a property should be accessed:
From the current frame with
current_accessors.From a calling frame with
caller_accessors.From a matching frame with
frame_accessors.
The suffix indicates which property to retrieve:
_fnaccessors return the function running in the frame._callaccessors return the defused call with which the function running in the frame was invoked._envaccessors return the execution environment of the function running in the frame.
Usage
current_call()
current_fn()
current_env()
caller_call(n = 1)
caller_fn(n = 1)
caller_env(n = 1)
frame_call(frame = caller_env())
frame_fn(frame = caller_env())