LuaJIT and C++ - call to Table.Method() does not work in loadstring/pcall
snippet in lua
LuaJIT and C++ - call to Table.Method() does not work in loadstring/pcall
user9395
> t = {}
> t.foo = 123 -- same as t["foo"] (but not t[foo], which would use the variable foo as the key)
> = t.foo
123
> = t["foo"]
123