Check whether this is a host function.
| 82 | |
| 83 | /// Check whether this is a host function. |
| 84 | bool isHostFunction() const noexcept { |
| 85 | return std::holds_alternative<std::unique_ptr<HostFunctionBase>>(Data); |
| 86 | } |
| 87 | |
| 88 | /// Getter for function type. |
| 89 | const AST::FunctionType &getFuncType() const noexcept { return FuncType; } |