| 117 | using InlineExports = std::vector<InlineExport>; |
| 118 | |
| 119 | void setInstantiateArgs(const uint32_t CompIdx, |
| 120 | InstantiateArgs &&Args) noexcept { |
| 121 | Expr.emplace<std::pair<uint32_t, InstantiateArgs>>(CompIdx, |
| 122 | std::move(Args)); |
| 123 | } |
| 124 | uint32_t getComponentIndex() const noexcept { |
| 125 | return std::get_if<std::pair<uint32_t, InstantiateArgs>>(&Expr)->first; |
| 126 | } |
no outgoing calls