| 78 | SURELOG_IMPLEMENT_RTTI(Function, Procedure) |
| 79 | public: |
| 80 | Function(DesignComponent* parent, const FileContent* fC, NodeId id, |
| 81 | std::string_view name, DataType* returnType) |
| 82 | : Procedure(parent, fC, id, name), m_returnType(returnType) {} |
| 83 | bool compile(CompileHelper& compile_helper); |
| 84 | ~Function() override = default; |
| 85 |
no outgoing calls
no test coverage detected