| 3100 | // >>>>>>>> WasmEdge calling frame functions >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> |
| 3101 | |
| 3102 | WASMEDGE_CAPI_EXPORT WasmEdge_ExecutorContext *WasmEdge_CallingFrameGetExecutor( |
| 3103 | const WasmEdge_CallingFrameContext *Cxt) noexcept { |
| 3104 | if (Cxt) { |
| 3105 | return toExecutorCxt(fromCallFrameCxt(Cxt)->getExecutor()); |
| 3106 | } |
| 3107 | return nullptr; |
| 3108 | } |
| 3109 | |
| 3110 | WASMEDGE_CAPI_EXPORT const WasmEdge_ModuleInstanceContext * |
| 3111 | WasmEdge_CallingFrameGetModuleInstance( |