mirror of
https://github.com/nodejs/node.git
synced 2025-05-18 17:26:24 +00:00

PR-URL: https://github.com/nodejs/io.js/pull/2072 Reviewed-By: Yosuke Furukawa <yosuke.furukawa@gmail.com> Reviewed-by: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Alex Kocharin <alex@kocharin.ru>
33 lines
949 B
JavaScript
33 lines
949 B
JavaScript
/**
|
|
* @fileoverview Rule to flag for-in loops without if statements inside
|
|
* @author Nicholas C. Zakas
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = function(context) {
|
|
|
|
return {
|
|
|
|
"ForInStatement": function(node) {
|
|
|
|
/*
|
|
* If the for-in statement has {}, then the real body is the body
|
|
* of the BlockStatement. Otherwise, just use body as provided.
|
|
*/
|
|
var body = node.body.type === "BlockStatement" ? node.body.body[0] : node.body;
|
|
|
|
if (body && body.type !== "IfStatement") {
|
|
context.report(node, "The body of a for-in should be wrapped in an if statement to filter unwanted properties from the prototype.");
|
|
}
|
|
}
|
|
};
|
|
|
|
};
|
|
|
|
module.exports.schema = [];
|