| 36 | } |
| 37 | |
| 38 | WasmEdge::AST::MemorySection |
| 39 | createMemorySec(WasmEdge::AST::MemoryType MemoryType) { |
| 40 | WasmEdge::AST::MemorySection MemorySec; |
| 41 | MemorySec.getContent() = {MemoryType}; |
| 42 | return MemorySec; |
| 43 | } |
| 44 | |
| 45 | WasmEdge::AST::GlobalSection |
| 46 | createGlobalSec(WasmEdge::AST::GlobalType GlobalType) { |