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

Nceu19 file2 #30391

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
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
22 changes: 11 additions & 11 deletions lib/events.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const {
ReflectOwnKeys,
} = primordials;

var spliceOne;
let spliceOne;

const {
kEnhanceStackBeforeInspector,
Expand Down Expand Up @@ -64,7 +64,7 @@ EventEmitter.prototype._maxListeners = undefined;

// By default EventEmitters will print a warning if more than 10 listeners are
// added to it. This is a useful default which helps finding memory leaks.
var defaultMaxListeners = 10;
let defaultMaxListeners = 10;

function checkListener(listener) {
if (typeof listener !== 'function') {
Expand Down Expand Up @@ -121,7 +121,7 @@ EventEmitter.prototype.getMaxListeners = function getMaxListeners() {
// Returns the length and line number of the first sequence of `a` that fully
// appears in `b` with a length of at least 4.
function identicalSequenceRange(a, b) {
for (var i = 0; i < a.length - 3; i++) {
for (let i = 0; i < a.length - 3; i++) {
// Find the first entry of b that matches the current entry of a.
const pos = b.indexOf(a[i]);
if (pos !== -1) {
Expand Down Expand Up @@ -218,17 +218,17 @@ EventEmitter.prototype.emit = function emit(type, ...args) {
} else {
const len = handler.length;
const listeners = arrayClone(handler, len);
for (var i = 0; i < len; ++i)
for (let i = 0; i < len; ++i)
ReflectApply(listeners[i], this, args);
}

return true;
};

function _addListener(target, type, listener, prepend) {
var m;
var events;
var existing;
let m;
let events;
let existing;

checkListener(listener);

Expand Down Expand Up @@ -357,7 +357,7 @@ EventEmitter.prototype.removeListener =
} else if (typeof list !== 'function') {
let position = -1;

for (var i = list.length - 1; i >= 0; i--) {
for (let i = list.length - 1; i >= 0; i--) {
if (list[i] === listener || list[i].listener === listener) {
originalListener = list[i].listener;
position = i;
Expand Down Expand Up @@ -426,7 +426,7 @@ EventEmitter.prototype.removeAllListeners =
this.removeListener(type, listeners);
} else if (listeners !== undefined) {
// LIFO order
for (var i = listeners.length - 1; i >= 0; i--) {
for (let i = listeners.length - 1; i >= 0; i--) {
this.removeListener(type, listeners[i]);
}
}
Expand Down Expand Up @@ -490,14 +490,14 @@ EventEmitter.prototype.eventNames = function eventNames() {

function arrayClone(arr, n) {
const copy = new Array(n);
for (var i = 0; i < n; ++i)
for (let i = 0; i < n; ++i)
copy[i] = arr[i];
return copy;
}

function unwrapListeners(arr) {
const ret = new Array(arr.length);
for (var i = 0; i < ret.length; ++i) {
for (let i = 0; i < ret.length; ++i) {
ret[i] = arr[i].listener || arr[i];
}
return ret;
Expand Down
4 changes: 2 additions & 2 deletions lib/internal/process/task_queues.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,15 +107,15 @@ function nextTick(callback) {
if (process._exiting)
return;

var args;
let args;
switch (arguments.length) {
case 1: break;
case 2: args = [arguments[1]]; break;
case 3: args = [arguments[1], arguments[2]]; break;
case 4: args = [arguments[1], arguments[2], arguments[3]]; break;
default:
args = new Array(arguments.length - 1);
for (var i = 1; i < arguments.length; i++)
for (let i = 1; i < arguments.length; i++)
args[i - 1] = arguments[i];
}

Expand Down