(target, mid)
| 4216 | // no heartbeat, pointer input dead). _Yc is counter-amortised (clock |
| 4217 | // check every 256th call) so the hot-path cost is one increment+compare. |
| 4218 | function* cn1_iv0(target, mid) { |
| 4219 | if (_Yc()) yield _Yv; |
| 4220 | if (target == null) { yield* throwNullPointerException(); } |
| 4221 | const r = cn1_ivResolve(target, mid)(target); |
| 4222 | if (r && typeof r.next === "function") { return yield* r; } |
| 4223 | return r; |
| 4224 | } |
| 4225 | function* cn1_iv1(target, mid, a0) { |
| 4226 | if (_Yc()) yield _Yv; |
| 4227 | if (target == null) { yield* throwNullPointerException(); } |
nothing calls this directly
no test coverage detected