We have been stalled on ESLint 3.8.0 for some time. Current ESLint is 3.13.0. We have been unable to upgrade because of more aggressive reporting on some rules, including indentation. ESLint configuration options and bugfixes are now such that we can reasonably upgrade. PR-URL: https://github.com/nodejs/node/pull/10561 Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
198 lines
5.7 KiB
JavaScript
198 lines
5.7 KiB
JavaScript
/**
|
|
* @fileoverview Rule to flag creation of function inside a loop
|
|
* @author Ilya Volodin
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Helpers
|
|
//------------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Gets the containing loop node of a specified node.
|
|
*
|
|
* We don't need to check nested functions, so this ignores those.
|
|
* `Scope.through` contains references of nested functions.
|
|
*
|
|
* @param {ASTNode} node - An AST node to get.
|
|
* @returns {ASTNode|null} The containing loop node of the specified node, or
|
|
* `null`.
|
|
*/
|
|
function getContainingLoopNode(node) {
|
|
let parent = node.parent;
|
|
|
|
while (parent) {
|
|
switch (parent.type) {
|
|
case "WhileStatement":
|
|
case "DoWhileStatement":
|
|
return parent;
|
|
|
|
case "ForStatement":
|
|
|
|
// `init` is outside of the loop.
|
|
if (parent.init !== node) {
|
|
return parent;
|
|
}
|
|
break;
|
|
|
|
case "ForInStatement":
|
|
case "ForOfStatement":
|
|
|
|
// `right` is outside of the loop.
|
|
if (parent.right !== node) {
|
|
return parent;
|
|
}
|
|
break;
|
|
|
|
case "ArrowFunctionExpression":
|
|
case "FunctionExpression":
|
|
case "FunctionDeclaration":
|
|
|
|
// We don't need to check nested functions.
|
|
return null;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
node = parent;
|
|
parent = node.parent;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Gets the containing loop node of a given node.
|
|
* If the loop was nested, this returns the most outer loop.
|
|
*
|
|
* @param {ASTNode} node - A node to get. This is a loop node.
|
|
* @param {ASTNode|null} excludedNode - A node that the result node should not
|
|
* include.
|
|
* @returns {ASTNode} The most outer loop node.
|
|
*/
|
|
function getTopLoopNode(node, excludedNode) {
|
|
let retv = node;
|
|
const border = excludedNode ? excludedNode.range[1] : 0;
|
|
|
|
while (node && node.range[0] >= border) {
|
|
retv = node;
|
|
node = getContainingLoopNode(node);
|
|
}
|
|
|
|
return retv;
|
|
}
|
|
|
|
/**
|
|
* Checks whether a given reference which refers to an upper scope's variable is
|
|
* safe or not.
|
|
*
|
|
* @param {ASTNode} funcNode - A target function node.
|
|
* @param {ASTNode} loopNode - A containing loop node.
|
|
* @param {escope.Reference} reference - A reference to check.
|
|
* @returns {boolean} `true` if the reference is safe or not.
|
|
*/
|
|
function isSafe(funcNode, loopNode, reference) {
|
|
const variable = reference.resolved;
|
|
const definition = variable && variable.defs[0];
|
|
const declaration = definition && definition.parent;
|
|
const kind = (declaration && declaration.type === "VariableDeclaration")
|
|
? declaration.kind
|
|
: "";
|
|
|
|
// Variables which are declared by `const` is safe.
|
|
if (kind === "const") {
|
|
return true;
|
|
}
|
|
|
|
// Variables which are declared by `let` in the loop is safe.
|
|
// It's a different instance from the next loop step's.
|
|
if (kind === "let" &&
|
|
declaration.range[0] > loopNode.range[0] &&
|
|
declaration.range[1] < loopNode.range[1]
|
|
) {
|
|
return true;
|
|
}
|
|
|
|
// WriteReferences which exist after this border are unsafe because those
|
|
// can modify the variable.
|
|
const border = getTopLoopNode(
|
|
loopNode,
|
|
(kind === "let") ? declaration : null
|
|
).range[0];
|
|
|
|
/**
|
|
* Checks whether a given reference is safe or not.
|
|
* The reference is every reference of the upper scope's variable we are
|
|
* looking now.
|
|
*
|
|
* It's safeafe if the reference matches one of the following condition.
|
|
* - is readonly.
|
|
* - doesn't exist inside a local function and after the border.
|
|
*
|
|
* @param {escope.Reference} upperRef - A reference to check.
|
|
* @returns {boolean} `true` if the reference is safe.
|
|
*/
|
|
function isSafeReference(upperRef) {
|
|
const id = upperRef.identifier;
|
|
|
|
return (
|
|
!upperRef.isWrite() ||
|
|
variable.scope.variableScope === upperRef.from.variableScope &&
|
|
id.range[0] < border
|
|
);
|
|
}
|
|
|
|
return Boolean(variable) && variable.references.every(isSafeReference);
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = {
|
|
meta: {
|
|
docs: {
|
|
description: "disallow `function` declarations and expressions inside loop statements",
|
|
category: "Best Practices",
|
|
recommended: false
|
|
},
|
|
|
|
schema: []
|
|
},
|
|
|
|
create(context) {
|
|
|
|
/**
|
|
* Reports functions which match the following condition:
|
|
*
|
|
* - has a loop node in ancestors.
|
|
* - has any references which refers to an unsafe variable.
|
|
*
|
|
* @param {ASTNode} node The AST node to check.
|
|
* @returns {boolean} Whether or not the node is within a loop.
|
|
*/
|
|
function checkForLoops(node) {
|
|
const loopNode = getContainingLoopNode(node);
|
|
|
|
if (!loopNode) {
|
|
return;
|
|
}
|
|
|
|
const references = context.getScope().through;
|
|
|
|
if (references.length > 0 &&
|
|
!references.every(isSafe.bind(null, node, loopNode))
|
|
) {
|
|
context.report({ node, message: "Don't make functions within a loop." });
|
|
}
|
|
}
|
|
|
|
return {
|
|
ArrowFunctionExpression: checkForLoops,
|
|
FunctionExpression: checkForLoops,
|
|
FunctionDeclaration: checkForLoops
|
|
};
|
|
}
|
|
};
|