| 404 | } |
| 405 | |
| 406 | void TaskerImpl::gc_mark(maajs::NativeMarkerFunc marker) |
| 407 | { |
| 408 | for (const auto& [_, ctx] : sinks) { |
| 409 | marker(ctx->fn); |
| 410 | } |
| 411 | for (const auto& [_, ctx] : ctxSinks) { |
| 412 | marker(ctx->fn); |
| 413 | } |
| 414 | } |
| 415 | |
| 416 | TaskerImpl* TaskerImpl::ctor(const maajs::CallbackInfo& info) |
| 417 | { |
nothing calls this directly
no outgoing calls
no test coverage detected