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
It’s currently impossible to push a LuaTable value on the stack, which makes it impossible to e.g. return a table from a module, to expose its API publicly in its namespace.
The text was updated successfully, but these errors were encountered:
A LuaTable is a borrowed table from a lua context; in particular, borrowing a table requires AsMutLua, because reading and writing values from the table requires manipulating the lua stack. As long as the lua context is borrowed, it isn't guaranteed to be in a consistent state for other operations to be performed. Thus, it isn't actually possible to Push while you have a LuaTable borrowed. A solution might have to take a different form.
It’s currently impossible to push a LuaTable value on the stack, which makes it impossible to e.g. return a table from a module, to expose its API publicly in its namespace.
The text was updated successfully, but these errors were encountered: