Register a host function which will be invoked after calling a host function.
| 100 | /// Register a host function which will be invoked after calling a |
| 101 | /// host function. |
| 102 | Expect<void> Executor::registerPostHostFunction( |
| 103 | void *HostData = nullptr, std::function<void(void *)> HostFunc = nullptr) { |
| 104 | HostFuncHelper.setPostHost(HostData, HostFunc); |
| 105 | return {}; |
| 106 | } |
| 107 | |
| 108 | /// Invoke function. See "include/executor/executor.h". |
| 109 | Expect<std::vector<std::pair<ValVariant, ValType>>> |
no test coverage detected