Register a named Component. See "include/executor/executor.h".
| 72 | |
| 73 | /// Register a named Component. See "include/executor/executor.h". |
| 74 | Expect<std::unique_ptr<Runtime::Instance::ComponentInstance>> |
| 75 | Executor::registerComponent(Runtime::StoreManager &StoreMgr, |
| 76 | const AST::Component::Component &Comp, |
| 77 | std::string_view Name) { |
| 78 | return instantiate(StoreMgr, Comp, Name); |
| 79 | } |
| 80 | |
| 81 | /// Register an instantiated Component. See "include/executor/executor.h". |
| 82 | Expect<void> Executor::registerComponent( |
no test coverage detected