| 78 | Expr.emplace<std::pair<uint32_t, InstantiateArgs>>(ModIdx, std::move(Args)); |
| 79 | } |
| 80 | uint32_t getModuleIndex() const noexcept { |
| 81 | return std::get_if<std::pair<uint32_t, InstantiateArgs>>(&Expr)->first; |
| 82 | } |
| 83 | Span<const InstantiateArg<uint32_t>> getInstantiateArgs() const noexcept { |
| 84 | return std::get_if<std::pair<uint32_t, InstantiateArgs>>(&Expr)->second; |
| 85 | } |
no outgoing calls
no test coverage detected