summaryrefslogtreecommitdiff
path: root/lang_ext/lua/test.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lang_ext/lua/test.lua')
-rw-r--r--lang_ext/lua/test.lua8
1 files changed, 5 insertions, 3 deletions
diff --git a/lang_ext/lua/test.lua b/lang_ext/lua/test.lua
index e5bf0ce..42bce25 100644
--- a/lang_ext/lua/test.lua
+++ b/lang_ext/lua/test.lua
@@ -21,16 +21,18 @@ print(B)
print(C)
a = A()
-print("YO! a.a=" .. tostring(a.a))
+a2 = upb.Message(A)
+print("YO! a.a=" .. tostring(a.a) .. ", a2.a=" .. tostring(a2.a))
a.a = 2
-print("YO! a.a=" .. tostring(a.a))
+a2.a = 3
+print("YO! a.a=" .. tostring(a.a) .. ", a2.a=" .. tostring(a2.a))
A = symtab:lookup("A")
if not A then
error("Could not find A")
end
-f = io.open("../../src/descriptor.pb")
+f = io.open("../../upb/descriptor.pb")
if not f then
error("Couldn't open descriptor.pb, try running 'make descriptorgen'")
end
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback