Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion luad/lfunction.d
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ struct LuaFunction
*/
void setEnvironment(ref LuaTable env)
in { assert(this.state == env.state); }
body
do
{
this.push();
env.push();
Expand Down
2 changes: 1 addition & 1 deletion luad/table.d
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ struct LuaTable
*/
void setMetaTable(ref LuaTable meta) @trusted
in{ assert(this.state == meta.state); }
body
do
{
this.push();
meta.push();
Expand Down