MCPcopy Index your code
hub / github.com/nodejs/node / constructor

Method constructor

lib/internal/debugger/inspect_client.js:171–179  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

169
170class Client extends EventEmitter {
171 constructor() {
172 super();
173 this.handleChunk = FunctionPrototypeBind(this._handleChunk, this);
174
175 this._port = undefined;
176 this._host = undefined;
177
178 this.reset();
179 }
180
181 _handleChunk(chunk) {
182 this._unprocessed = Buffer.concat([this._unprocessed, chunk]);

Callers

nothing calls this directly

Calls 1

resetMethod · 0.95

Tested by

no test coverage detected