(stream, state)
| 24594 | // However, if we're not ended, or reading, and the length < hwm, |
| 24595 | // then go ahead and try to read some more preemptively. |
| 24596 | function maybeReadMore(stream, state) { |
| 24597 | if (!state.readingMore) { |
| 24598 | state.readingMore = true; |
| 24599 | processNextTick(maybeReadMore_, stream, state); |
| 24600 | } |
| 24601 | } |
| 24602 | |
| 24603 | function maybeReadMore_(stream, state) { |
| 24604 | var len = state.length; |