mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.0 KiB
72 lines
2.0 KiB
9 years ago
|
/**
|
||
|
* @fileoverview Rule to
|
||
|
* @author Toru Nagashima
|
||
|
* @copyright 2015 Toru Nagashima. All rights reserved.
|
||
|
* See LICENSE file in root directory for full license.
|
||
|
*/
|
||
|
|
||
|
"use strict";
|
||
|
|
||
|
//------------------------------------------------------------------------------
|
||
|
// Helpers
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
/**
|
||
|
* Gets the variable object of `arguments` which is defined implicitly.
|
||
|
* @param {escope.Scope} scope - A scope to get.
|
||
|
* @returns {escope.Variable} The found variable object.
|
||
|
*/
|
||
|
function getVariableOfArguments(scope) {
|
||
|
var variables = scope.variables;
|
||
|
for (var i = 0; i < variables.length; ++i) {
|
||
|
var variable = variables[i];
|
||
|
if (variable.name === "arguments") {
|
||
|
// If there was a parameter which is named "arguments", the implicit "arguments" is not defined.
|
||
|
// So does fast return with null.
|
||
|
return (variable.identifiers.length === 0) ? variable : null;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* istanbul ignore next : unreachable */
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
//------------------------------------------------------------------------------
|
||
|
// Rule Definition
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
module.exports = function(context) {
|
||
|
|
||
|
/**
|
||
|
* Reports a given reference.
|
||
|
*
|
||
|
* @param {escope.Reference} reference - A reference to report.
|
||
|
* @returns {void}
|
||
|
*/
|
||
|
function report(reference) {
|
||
|
context.report({
|
||
|
node: reference.identifier,
|
||
|
message: "Use the rest parameters instead of 'arguments'."
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Reports references of the implicit `arguments` variable if exist.
|
||
|
*
|
||
|
* @returns {void}
|
||
|
*/
|
||
|
function checkForArguments() {
|
||
|
var argumentsVar = getVariableOfArguments(context.getScope());
|
||
|
if (argumentsVar) {
|
||
|
argumentsVar.references.forEach(report);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return {
|
||
|
FunctionDeclaration: checkForArguments,
|
||
|
FunctionExpression: checkForArguments
|
||
|
};
|
||
|
};
|
||
|
|
||
|
module.exports.schema = [];
|