| 2511 | } |
| 2512 | |
| 2513 | WASMEDGE_CAPI_EXPORT WasmEdge_TagInstanceContext * |
| 2514 | WasmEdge_ModuleInstanceFindTag(const WasmEdge_ModuleInstanceContext *Cxt, |
| 2515 | const WasmEdge_String Name) noexcept { |
| 2516 | if (Cxt) { |
| 2517 | return toTagCxt(fromModCxt(Cxt)->findTagExports(genStrView(Name))); |
| 2518 | } |
| 2519 | return nullptr; |
| 2520 | } |
| 2521 | |
| 2522 | WASMEDGE_CAPI_EXPORT WasmEdge_GlobalInstanceContext * |
| 2523 | WasmEdge_ModuleInstanceFindGlobal(const WasmEdge_ModuleInstanceContext *Cxt, |
nothing calls this directly
no test coverage detected