| 2445 | } |
| 2446 | |
| 2447 | int64_t bark_get_load_time(struct bark_context* bctx) { |
| 2448 | if (!bctx) { |
| 2449 | return 0; |
| 2450 | } |
| 2451 | return bctx->stats.t_load_us; |
| 2452 | } |
| 2453 | |
| 2454 | int64_t bark_get_eval_time(struct bark_context* bctx) { |
| 2455 | if (!bctx) { |
nothing calls this directly
no outgoing calls
no test coverage detected