| 125 | return std::get_if<std::pair<uint32_t, InstantiateArgs>>(&Expr)->first; |
| 126 | } |
| 127 | Span<const InstantiateArg<SortIndex>> getInstantiateArgs() const noexcept { |
| 128 | return std::get_if<std::pair<uint32_t, InstantiateArgs>>(&Expr)->second; |
| 129 | } |
| 130 | |
| 131 | void setInlineExports(InlineExports &&Exports) noexcept { |
| 132 | Expr.emplace<InlineExports>(std::move(Exports)); |
no outgoing calls
no test coverage detected