()
| 3 | var util = require('./util'); |
| 4 | |
| 5 | function StreamSocket() { |
| 6 | this.readyState = 0; |
| 7 | this.stream = new ServerStream(this); |
| 8 | } |
| 9 | module.exports = StreamSocket; |
| 10 | |
| 11 | StreamSocket.prototype._open = function() { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…