()
| 8023 | return this[kPipelining]; |
| 8024 | } |
| 8025 | set pipelining(value) { |
| 8026 | this[kPipelining] = value; |
| 8027 | this[kResume](true); |
| 8028 | } |
| 8029 | get [kPending]() { |
| 8030 | return this[kQueue].length - this[kPendingIdx]; |
| 8031 | } |
| 8032 | get [kRunning]() { |
| 8033 | return this[kPendingIdx] - this[kRunningIdx]; |
nothing calls this directly
no test coverage detected