Instantiate a Component. See "include/executor/executor.h".
| 65 | |
| 66 | /// Instantiate a Component. See "include/executor/executor.h". |
| 67 | Expect<std::unique_ptr<Runtime::Instance::ComponentInstance>> |
| 68 | Executor::instantiateComponent(Runtime::StoreManager &StoreMgr, |
| 69 | const AST::Component::Component &Comp) { |
| 70 | return instantiate(StoreMgr, Comp); |
| 71 | } |
| 72 | |
| 73 | /// Register a named Component. See "include/executor/executor.h". |
| 74 | Expect<std::unique_ptr<Runtime::Instance::ComponentInstance>> |