| 2089 | |
| 2090 | |
| 2091 | bool compilefile_to_file(const char *filename, const char *out_filename, char *error, bool use_type_check) |
| 2092 | { |
| 2093 | return luaL_compilefile(filename, out_filename, error, use_type_check) == 0; |
| 2094 | } |
| 2095 | bool compilefile_to_stream(lua_State *L, const char *filename, GluaModuleByteStreamP stream, char *error, bool use_type_check, bool is_contract) |
| 2096 | { |
| 2097 | return luaL_compilefile_to_stream(L, filename, stream, error, use_type_check, is_contract) == 0; |
no test coverage detected