* compile current lua state to binary */
| 1056 | * compile current lua state to binary |
| 1057 | */ |
| 1058 | LUA_API int lua_compile(lua_State *L, lua_Reader reader, void *dt, |
| 1059 | const char *chunkname, const char *mode, lua_Writer writer, FILE *out_file) |
| 1060 | { |
| 1061 | return lua_common_compile(L, reader, dt, chunkname, mode, writer, out_file); |
| 1062 | } |
| 1063 | |
| 1064 | LUA_API int (lua_compile_to_stream)(lua_State *L, lua_Reader reader, void *dt, |
| 1065 | const char *chunkname, const char *mode, lua_Writer writer, GluaModuleByteStreamP stream) |
no test coverage detected