Getter for locals vector.
| 106 | |
| 107 | /// Getter for locals vector. |
| 108 | Span<const std::pair<uint32_t, ValType>> getLocals() const noexcept { |
| 109 | return Locals; |
| 110 | } |
| 111 | std::vector<std::pair<uint32_t, ValType>> &getLocals() noexcept { |
| 112 | return Locals; |
| 113 | } |
no outgoing calls