Check whether this is a compiled function.
| 77 | |
| 78 | /// Check whether this is a compiled function. |
| 79 | bool isCompiledFunction() const noexcept { |
| 80 | return std::holds_alternative<Symbol<CompiledFunction>>(Data); |
| 81 | } |
| 82 | |
| 83 | /// Check whether this is a host function. |
| 84 | bool isHostFunction() const noexcept { |
no outgoing calls
no test coverage detected