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
Edit: After a deeper investigation this method seems to be the problem:
privatestaticintStr_Dump(ILuaStatelua){lua.L_CheckType(1,LuaType.LUA_TFUNCTION);lua.SetTop(1);varbsb=newByteStringBuilder();LuaWriterwriteFunc=delegate(byte[]bytes,intstart,intlength){bsb.Append(bytes,start,length);returnDumpStatus.OK;};if(lua.Dump(writeFunc)!=DumpStatus.OK)returnlua.L_Error("unable to dump given function");lua.PushString(bsb.ToString());return1;}
Specially LuaWriter writeFunc = delegate(byte[] bytes, int start, int length)
The text was updated successfully, but these errors were encountered:
https://gist.github.com/valentinbreiz/8b099c7acd93783e90d71e644f070519
Builds fine until it goes to YASM part
Edit: After a deeper investigation this method seems to be the problem:
Specially LuaWriter writeFunc = delegate(byte[] bytes, int start, int length)
The text was updated successfully, but these errors were encountered: