aboutsummaryrefslogtreecommitdiffstats
path: root/bruiser/lua-scripts
diff options
context:
space:
mode:
Diffstat (limited to 'bruiser/lua-scripts')
-rw-r--r--bruiser/lua-scripts/wasmtest.lua18
1 files changed, 18 insertions, 0 deletions
diff --git a/bruiser/lua-scripts/wasmtest.lua b/bruiser/lua-scripts/wasmtest.lua
new file mode 100644
index 0000000..a287b01
--- /dev/null
+++ b/bruiser/lua-scripts/wasmtest.lua
@@ -0,0 +1,18 @@
+
+function demo4()
+ local a = getwasmobj("/home/bloodstalker/devi/hell2/bruiser/autogen/wasm/ft/test.wasm")
+ print(a)
+ print(type(a))
+ for k, v in pairs(a) do
+ print(k, v, type(k), type(v))
+ end
+ print("type section:")
+ io.write(tostring(a["type_section"]:id()).."\n")
+ io.write(tostring(a["type_section"]:payloadlength()).."\n")
+ io.write(tostring(a["type_section"]:namelength()).."\n")
+ io.write(tostring(a["type_section"]:name()).."\n")
+ io.write(tostring(a["type_section"]:count()).."\n")
+ io.write(tostring(a["type_section"]:entries()).."\n")
+end
+
+demo4()