Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

name repl anonymous functions #9356

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions lib/repl.js
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ function REPLServer(prompt,

self.eval = self._domain.bind(eval_);

self._domain.on('error', function(e) {
self._domain.on('error', function debugDomainError(e) {
debug('domain error');
const top = replMap.get(self);
internalUtil.decorateErrorStack(e);
Expand Down Expand Up @@ -436,13 +436,13 @@ function REPLServer(prompt,
};
}

self.on('close', function() {
self.on('close', function emitExit() {
self.emit('exit');
});

var sawSIGINT = false;
var sawCtrlD = false;
self.on('SIGINT', function() {
self.on('SIGINT', function onSigInt() {
var empty = self.line.length === 0;
self.clearLine();
self.turnOffEditorMode();
Expand All @@ -465,7 +465,7 @@ function REPLServer(prompt,
self.displayPrompt();
});

self.on('line', function(cmd) {
self.on('line', function onLine(cmd) {
debug('line %j', cmd);
sawSIGINT = false;

Expand Down Expand Up @@ -586,7 +586,7 @@ function REPLServer(prompt,
}
});

self.on('SIGCONT', function() {
self.on('SIGCONT', function onSigCont() {
if (self.editorMode) {
self.outputStream.write(`${self._initialPrompt}.editor\n`);
self.outputStream.write(
Expand Down Expand Up @@ -951,7 +951,7 @@ function complete(line, callback) {
addStandardGlobals(completionGroups, filter);
completionGroupsLoaded();
} else {
this.eval('.scope', this.context, 'repl', function(err, globals) {
this.eval('.scope', this.context, 'repl', function ev(err, globals) {
if (err || !Array.isArray(globals)) {
addStandardGlobals(completionGroups, filter);
} else if (Array.isArray(globals[0])) {
Expand All @@ -968,7 +968,7 @@ function complete(line, callback) {
}
} else {
const evalExpr = `try { ${expr} } catch (e) {}`;
this.eval(evalExpr, this.context, 'repl', function(e, obj) {
this.eval(evalExpr, this.context, 'repl', function doEval(e, obj) {
// if (e) console.log(e);

if (obj != null) {
Expand Down