You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version: 0.4.2 AND 0.5-dev (cloned branch) Issue: Assigning a value to a table with a metatable containing a __newindexfunction causes the table reference to become nil. If __newindex is a table or nil then there are no issues.
Runnable C# MVCE:
try{varluaState=LuaState.Create();luaState.OpenBasicLibrary();awaitluaState.DoStringAsync(""" local tbl = setmetatable({}, { __newindex = function() end }) print(tbl) tbl.value = 0 print(tbl) """);}catch(LuaRuntimeExceptione){// ...}