(capacity)
| 8123 | } |
| 8124 | |
| 8125 | function Queue(capacity) { |
| 8126 | this._capacity = capacity; |
| 8127 | this._length = 0; |
| 8128 | this._front = 0; |
| 8129 | } |
| 8130 | |
| 8131 | Queue.prototype._willBeOverCapacity = function (size) { |
| 8132 | return this._capacity < size; |
nothing calls this directly
no outgoing calls
no test coverage detected