| 7 | namespace Executor { |
| 8 | |
| 9 | Expect<void> |
| 10 | Executor::instantiate(Runtime::Instance::ComponentInstance &CompInst, |
| 11 | const AST::Component::CoreTypeSection &CoreTypeSec) { |
| 12 | for (auto &Ty : CoreTypeSec.getContent()) { |
| 13 | CompInst.addCoreType(Ty); |
| 14 | } |
| 15 | return {}; |
| 16 | } |
| 17 | |
| 18 | Expect<void> |
| 19 | Executor::instantiate(Runtime::Instance::ComponentInstance &CompInst, |
nothing calls this directly
no test coverage detected