(Lua.State* L)
| 27 | } |
| 28 | |
| 29 | private static int CsLuaMul(Lua.State* L) |
| 30 | { |
| 31 | int a = LuaL.checkinteger(L, 1); |
| 32 | int b = LuaL.checkinteger(L, 2); |
| 33 | Lua.pushinteger(L, a * b); |
| 34 | return 1; |
| 35 | } |
| 36 | |
| 37 | [UnmanagedCallersOnly(EntryPoint = "csRunTestsLua")] |
| 38 | public static int csRunTestsLua(Lua.State* L) |
nothing calls this directly
no test coverage detected