| 30 | class HostFunctionBase { |
| 31 | public: |
| 32 | HostFunctionBase() = delete; |
| 33 | HostFunctionBase(const uint64_t FuncCost) |
| 34 | : DefType(AST::FunctionType()), Cost(FuncCost) {} |
| 35 | virtual ~HostFunctionBase() = default; |
nothing calls this directly
no test coverage detected