()
| 25840 | module.exports = BufferList; |
| 25841 | |
| 25842 | function BufferList() { |
| 25843 | this.head = null; |
| 25844 | this.tail = null; |
| 25845 | this.length = 0; |
| 25846 | } |
| 25847 | |
| 25848 | BufferList.prototype.push = function (v) { |
| 25849 | var entry = { data: v, next: null }; |
nothing calls this directly
no outgoing calls
no test coverage detected