Check whether this is a native wasm function.
| 72 | |
| 73 | /// Check whether this is a native wasm function. |
| 74 | bool isWasmFunction() const noexcept { |
| 75 | return std::holds_alternative<WasmFunction>(Data); |
| 76 | } |
| 77 | |
| 78 | /// Check whether this is a compiled function. |
| 79 | bool isCompiledFunction() const noexcept { |
no outgoing calls
no test coverage detected