| 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; |
| 2098 | } |
| 2099 | |
| 2100 | bool compile_contract_to_stream(const char *filename, GluaModuleByteStreamP stream, |
| 2101 | char *error, GluaStatePreProcessorFunction *preprocessor, bool use_type_check) |
no test coverage detected