aboutsummaryrefslogtreecommitdiffstats
path: root/bruiser/lua-scripts/demo3.lua
blob: 89dde81e9fceb5a8242e77c43044baea245fd26e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
local demo3 = {}

function demo3.init()
  local wasm = require("wasm")
  local wasm_file = "../wasm/test/injected.wasm"
  local wasm_module = Wasm_Module()
  local table_type = table_type_t()
  local resizable_limit = resizable_limit_t()
  table_type:set_resizable_limit(resizable_limit)
end

return demo3