Skip to content

Commit cd1a7f0

Browse files
committed
readline: name some anonymous functions
Refs: #8913 Refs: #14297 (review)
1 parent 462b58e commit cd1a7f0

File tree

1 file changed

+24
-18
lines changed

1 file changed

+24
-18
lines changed

lib/readline.js

+24-18
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,11 @@ function Interface(input, output, completer, terminal) {
130130

131131
// Check arity, 2 - for async, 1 for sync
132132
if (typeof completer === 'function') {
133-
this.completer = completer.length === 2 ? completer : function(v, cb) {
134-
cb(null, completer(v));
135-
};
133+
this.completer = completer.length === 2 ?
134+
completer :
135+
function completerWrapper(v, cb) {
136+
cb(null, completer(v));
137+
};
136138
}
137139

138140
this.setPrompt(prompt);
@@ -175,15 +177,23 @@ function Interface(input, output, completer, terminal) {
175177
}
176178

177179
if (!this.terminal) {
178-
input.on('data', ondata);
179-
input.on('end', onend);
180-
self.once('close', function() {
180+
function onSelfCloseWithoutTerminal() {
181181
input.removeListener('data', ondata);
182182
input.removeListener('end', onend);
183-
});
184-
this._decoder = new StringDecoder('utf8');
183+
}
185184

185+
input.on('data', ondata);
186+
input.on('end', onend);
187+
self.once('close', onSelfCloseWithoutTerminal);
188+
this._decoder = new StringDecoder('utf8');
186189
} else {
190+
function onSelfCloseWithTerminal() {
191+
input.removeListener('keypress', onkeypress);
192+
input.removeListener('end', ontermend);
193+
if (output !== null && output !== undefined) {
194+
output.removeListener('resize', onresize);
195+
}
196+
}
187197

188198
emitKeypressEvents(input, this);
189199

@@ -206,13 +216,7 @@ function Interface(input, output, completer, terminal) {
206216
if (output !== null && output !== undefined)
207217
output.on('resize', onresize);
208218

209-
self.once('close', function() {
210-
input.removeListener('keypress', onkeypress);
211-
input.removeListener('end', ontermend);
212-
if (output !== null && output !== undefined) {
213-
output.removeListener('resize', onresize);
214-
}
215-
});
219+
self.once('close', onSelfCloseWithTerminal);
216220
}
217221

218222
input.resume();
@@ -460,7 +464,7 @@ Interface.prototype._tabComplete = function(lastKeypressWasTab) {
460464
var self = this;
461465

462466
self.pause();
463-
self.completer(self.line.slice(0, self.cursor), function(err, rv) {
467+
self.completer(self.line.slice(0, self.cursor), function onComplete(err, rv) {
464468
self.resume();
465469

466470
if (err) {
@@ -474,7 +478,7 @@ Interface.prototype._tabComplete = function(lastKeypressWasTab) {
474478
// Apply/show completions.
475479
if (lastKeypressWasTab) {
476480
self._writeToOutput('\r\n');
477-
var width = completions.reduce(function(a, b) {
481+
var width = completions.reduce(function completionReducer(a, b) {
478482
return a.length > b.length ? a : b;
479483
}).length + 2; // 2 space padding
480484
var maxColumns = Math.floor(self.columns / width);
@@ -495,7 +499,9 @@ Interface.prototype._tabComplete = function(lastKeypressWasTab) {
495499
}
496500

497501
// If there is a common prefix to all matches, then apply that portion.
498-
var f = completions.filter(function(e) { if (e) return e; });
502+
var f = completions.filter(function completionFilter(e) {
503+
if (e) return e;
504+
});
499505
var prefix = commonPrefix(f);
500506
if (prefix.length > completeOn.length) {
501507
self._insertString(prefix.slice(completeOn.length));

0 commit comments

Comments
 (0)