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.
40 lines
1.1 KiB
40 lines
1.1 KiB
8 years ago
|
/**
|
||
|
* @fileoverview Prefer common.mustNotCall(msg) over common.mustCall(fn, 0)
|
||
|
* @author James M Snell <jasnell@gmail.com>
|
||
|
*/
|
||
|
'use strict';
|
||
|
|
||
|
//------------------------------------------------------------------------------
|
||
|
// Rule Definition
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
const msg = 'Please use common.mustNotCall(msg) instead of ' +
|
||
|
'common.mustCall(fn, 0) or common.mustCall(0).';
|
||
|
|
||
|
function isCommonMustCall(node) {
|
||
|
return node &&
|
||
|
node.callee &&
|
||
|
node.callee.object &&
|
||
|
node.callee.object.name === 'common' &&
|
||
|
node.callee.property &&
|
||
|
node.callee.property.name === 'mustCall';
|
||
|
}
|
||
|
|
||
|
function isArgZero(argument) {
|
||
|
return argument &&
|
||
|
typeof argument.value === 'number' &&
|
||
|
argument.value === 0;
|
||
|
}
|
||
|
|
||
|
module.exports = function(context) {
|
||
|
return {
|
||
|
CallExpression(node) {
|
||
|
if (isCommonMustCall(node) &&
|
||
|
(isArgZero(node.arguments[0]) || // catch common.mustCall(0)
|
||
|
isArgZero(node.arguments[1]))) { // catch common.mustCall(fn, 0)
|
||
|
context.report(node, msg);
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
};
|