| 1383 | } |
| 1384 | |
| 1385 | static JSValue js_std_printf(JSContext *ctx, JSValueConst this_val, |
| 1386 | int argc, JSValueConst *argv) |
| 1387 | { |
| 1388 | return js_printf_internal(ctx, argc, argv, stdout); |
| 1389 | } |
| 1390 | |
| 1391 | static FILE *js_std_file_get(JSContext *ctx, JSValueConst obj) |
| 1392 | { |
nothing calls this directly
no test coverage detected