| 174 | } |
| 175 | |
| 176 | static bool eval_script(GjsContext* gjs_context, GFile* script) { |
| 177 | Gjs::AutoChar filename{get_script_identifier(script)}; |
| 178 | return gjs_context_eval_file(gjs_context, filename, nullptr, nullptr); |
| 179 | } |
| 180 | |
| 181 | static char* eval_script_and_get_coverage_data(GjsContext* gjs_context, |
| 182 | GjsCoverage* coverage, |
no test coverage detected