lib: change callbacks to arrow function

PR-URL: https://github.com/nodejs/node/pull/24625
Reviewed-By: Shingo Inoue <leko.noor@gmail.com>
Reviewed-By: Masashi Hirano <shisama07@gmail.com>
This commit is contained in:
/Jesse 2018-11-24 16:42:51 +09:00 committed by Rich Trott
parent 27139fc37c
commit 0f18a40374

View File

@ -240,7 +240,7 @@
// To allow people to extend Node in different ways, this hook allows // To allow people to extend Node in different ways, this hook allows
// one to drop a file lib/_third_party_main.js into the build // one to drop a file lib/_third_party_main.js into the build
// directory which will be executed instead of Node's normal loading. // directory which will be executed instead of Node's normal loading.
process.nextTick(function() { process.nextTick(() => {
NativeModule.require('_third_party_main'); NativeModule.require('_third_party_main');
}); });
} else if (process.argv[1] === 'inspect' || process.argv[1] === 'debug') { } else if (process.argv[1] === 'inspect' || process.argv[1] === 'debug') {
@ -251,7 +251,7 @@
} }
// Start the debugger agent. // Start the debugger agent.
process.nextTick(function() { process.nextTick(() => {
NativeModule.require('internal/deps/node-inspect/lib/_inspect').start(); NativeModule.require('internal/deps/node-inspect/lib/_inspect').start();
}); });
@ -304,14 +304,14 @@
if (process._forceRepl || NativeModule.require('tty').isatty(0)) { if (process._forceRepl || NativeModule.require('tty').isatty(0)) {
// REPL // REPL
const cliRepl = NativeModule.require('internal/repl'); const cliRepl = NativeModule.require('internal/repl');
cliRepl.createInternalRepl(process.env, function(err, repl) { cliRepl.createInternalRepl(process.env, (err, repl) => {
if (err) { if (err) {
throw err; throw err;
} }
repl.on('exit', function() { repl.on('exit', () => {
if (repl._flushing) { if (repl._flushing) {
repl.pause(); repl.pause();
return repl.once('flushHistory', function() { return repl.once('flushHistory', () => {
process.exit(); process.exit();
}); });
} }
@ -328,7 +328,7 @@
process.stdin.setEncoding('utf8'); process.stdin.setEncoding('utf8');
let code = ''; let code = '';
process.stdin.on('data', function(d) { process.stdin.on('data', (d) => {
code += d; code += d;
}); });
@ -567,7 +567,7 @@
emitAfter emitAfter
} = NativeModule.require('internal/async_hooks'); } = NativeModule.require('internal/async_hooks');
process._fatalException = function(er) { process._fatalException = (er) => {
// It's possible that defaultTriggerAsyncId was set for a constructor // It's possible that defaultTriggerAsyncId was set for a constructor
// call that threw and was never cleared. So clear it now. // call that threw and was never cleared. So clear it now.
clearDefaultTriggerAsyncId(); clearDefaultTriggerAsyncId();