Skip to content

Commit 94e2875

Browse files
JungMinuMyles Borins
authored and
Myles Borins
committed
lib: use arrow functions instead of bind
use `arrow functions` instead of `bind(this)` in order to improve performance through optimizations. PR-URL: #3622 Reviewed-By: Jeremiah Senkpiel <[email protected]> Reviewed-By: Trevor Norris <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Myles Borins <[email protected]>
1 parent 138e1e5 commit 94e2875

File tree

6 files changed

+35
-26
lines changed

6 files changed

+35
-26
lines changed

lib/_debugger.js

+9-7
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ function Client() {
159159
protocol.execute(d);
160160
});
161161

162-
protocol.onResponse = this._onResponse.bind(this);
162+
protocol.onResponse = (res) => this._onResponse(res);
163163
}
164164
inherits(Client, net.Socket);
165165
exports.Client = Client;
@@ -734,7 +734,7 @@ function Interface(stdin, stdout, args) {
734734
prompt: 'debug> ',
735735
input: this.stdin,
736736
output: this.stdout,
737-
eval: this.controlEval.bind(this),
737+
eval: (code, ctx, file, cb) => this.controlEval(code, ctx, file, cb),
738738
useGlobal: false,
739739
ignoreUndefined: true
740740
};
@@ -765,7 +765,7 @@ function Interface(stdin, stdout, args) {
765765
});
766766

767767
// Handle all possible exits
768-
process.on('exit', this.killChild.bind(this));
768+
process.on('exit', () => this.killChild());
769769
process.once('SIGTERM', process.exit.bind(process, 0));
770770
process.once('SIGHUP', process.exit.bind(process, 0));
771771

@@ -1587,7 +1587,8 @@ Interface.prototype.repl = function() {
15871587
this.repl.on('exit', exitDebugRepl);
15881588

15891589
// Set new
1590-
this.repl.eval = this.debugEval.bind(this);
1590+
this.repl.eval = (code, ctx, file, cb) =>
1591+
this.debugEval(code, ctx, file, cb);
15911592
this.repl.context = {};
15921593

15931594
// Swap history
@@ -1602,7 +1603,8 @@ Interface.prototype.repl = function() {
16021603
// Exit debug repl
16031604
Interface.prototype.exitRepl = function() {
16041605
// Restore eval
1605-
this.repl.eval = this.controlEval.bind(this);
1606+
this.repl.eval = (code, ctx, file, cb) =>
1607+
this.controlEval(code, ctx, file, cb);
16061608

16071609
// Swap history
16081610
this.history.debug = this.repl.rli.history;
@@ -1689,8 +1691,8 @@ Interface.prototype.trySpawn = function(cb) {
16891691
// pipe stream into debugger
16901692
this.child = spawn(process.execPath, childArgs);
16911693

1692-
this.child.stdout.on('data', this.childPrint.bind(this));
1693-
this.child.stderr.on('data', this.childPrint.bind(this));
1694+
this.child.stdout.on('data', (text) => this.childPrint(text));
1695+
this.child.stderr.on('data', (text) => this.childPrint(text));
16941696
}
16951697

16961698
this.pause();

lib/_tls_legacy.js

+6-5
Original file line numberDiff line numberDiff line change
@@ -704,14 +704,15 @@ function SecurePair(context, isServer, requestCert, rejectUnauthorized,
704704
this._rejectUnauthorized);
705705

706706
if (this._isServer) {
707-
this.ssl.onhandshakestart = onhandshakestart.bind(this);
708-
this.ssl.onhandshakedone = onhandshakedone.bind(this);
709-
this.ssl.onclienthello = onclienthello.bind(this);
710-
this.ssl.onnewsession = onnewsession.bind(this);
707+
this.ssl.onhandshakestart = () => onhandshakestart.call(this);
708+
this.ssl.onhandshakedone = () => onhandshakedone.call(this);
709+
this.ssl.onclienthello = (hello) => onclienthello.call(this, hello);
710+
this.ssl.onnewsession =
711+
(key, session) => onnewsession.call(this, key, session);
711712
this.ssl.lastHandshakeTime = 0;
712713
this.ssl.handshakes = 0;
713714
} else {
714-
this.ssl.onocspresponse = onocspresponse.bind(this);
715+
this.ssl.onocspresponse = (resp) => onocspresponse.call(this, resp);
715716
}
716717

717718
if (process.features.tls_sni) {

lib/_tls_wrap.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -407,11 +407,11 @@ TLSSocket.prototype._init = function(socket, wrap) {
407407
ssl.setVerifyMode(requestCert, rejectUnauthorized);
408408

409409
if (options.isServer) {
410-
ssl.onhandshakestart = onhandshakestart.bind(this);
411-
ssl.onhandshakedone = onhandshakedone.bind(this);
412-
ssl.onclienthello = onclienthello.bind(this);
413-
ssl.oncertcb = oncertcb.bind(this);
414-
ssl.onnewsession = onnewsession.bind(this);
410+
ssl.onhandshakestart = () => onhandshakestart.call(this);
411+
ssl.onhandshakedone = () => onhandshakedone.call(this);
412+
ssl.onclienthello = (hello) => onclienthello.call(this, hello);
413+
ssl.oncertcb = (info) => oncertcb.call(this, info);
414+
ssl.onnewsession = (key, session) => onnewsession.call(this, key, session);
415415
ssl.lastHandshakeTime = 0;
416416
ssl.handshakes = 0;
417417

@@ -425,8 +425,8 @@ TLSSocket.prototype._init = function(socket, wrap) {
425425
}
426426
} else {
427427
ssl.onhandshakestart = function() {};
428-
ssl.onhandshakedone = this._finishInit.bind(this);
429-
ssl.onocspresponse = onocspresponse.bind(this);
428+
ssl.onhandshakedone = () => this._finishInit();
429+
ssl.onocspresponse = (resp) => onocspresponse.call(this, resp);
430430

431431
if (options.session)
432432
ssl.setSession(options.session);

lib/cluster.js

+9-3
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,12 @@ function Worker(options) {
3333

3434
if (options.process) {
3535
this.process = options.process;
36-
this.process.on('error', this.emit.bind(this, 'error'));
37-
this.process.on('message', this.emit.bind(this, 'message'));
36+
this.process.on('error', (code, signal) =>
37+
this.emit('error', code, signal)
38+
);
39+
this.process.on('message', (message, handle) =>
40+
this.emit('message', message, handle)
41+
);
3842
}
3943
}
4044
util.inherits(Worker, EventEmitter);
@@ -337,7 +341,9 @@ function masterInit() {
337341
process: workerProcess
338342
});
339343

340-
worker.on('message', this.emit.bind(this, 'message'));
344+
worker.on('message', (message, handle) =>
345+
this.emit('message', message, handle)
346+
);
341347

342348
worker.process.once('exit', function(exitCode, signalCode) {
343349
/*

lib/fs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1842,7 +1842,7 @@ ReadStream.prototype.close = function(cb) {
18421842
this.once('open', close);
18431843
return;
18441844
}
1845-
return process.nextTick(this.emit.bind(this, 'close'));
1845+
return process.nextTick(() => this.emit('close'));
18461846
}
18471847
this.closed = true;
18481848
close();

lib/net.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ Socket.prototype._onTimeout = function() {
322322
Socket.prototype.setNoDelay = function(enable) {
323323
if (!this._handle) {
324324
this.once('connect',
325-
enable ? this.setNoDelay : this.setNoDelay.bind(this, enable));
325+
enable ? this.setNoDelay : () => this.setNoDelay(enable));
326326
return this;
327327
}
328328

@@ -336,7 +336,7 @@ Socket.prototype.setNoDelay = function(enable) {
336336

337337
Socket.prototype.setKeepAlive = function(setting, msecs) {
338338
if (!this._handle) {
339-
this.once('connect', this.setKeepAlive.bind(this, setting, msecs));
339+
this.once('connect', () => this.setKeepAlive(setting, msecs));
340340
return this;
341341
}
342342

@@ -384,7 +384,7 @@ Socket.prototype._read = function(n) {
384384

385385
if (this._connecting || !this._handle) {
386386
debug('_read wait for connection');
387-
this.once('connect', this._read.bind(this, n));
387+
this.once('connect', () => this._read(n));
388388
} else if (!this._handle.reading) {
389389
// not already reading, start the flow
390390
debug('Socket._read readStart');

0 commit comments

Comments
 (0)