4dbc60d5b4fa1f68714545cb5db3ec06b235b241
[platform/framework/web/crosswalk-tizen.git] /
1 /**
2  * @fileoverview Rule to flag when using constructor for wrapper objects
3  * @author Ilya Volodin
4  */
5
6 "use strict";
7
8 //------------------------------------------------------------------------------
9 // Rule Definition
10 //------------------------------------------------------------------------------
11
12 module.exports = function(context) {
13
14     return {
15
16         "NewExpression": function(node) {
17             var wrapperObjects = ["String", "Number", "Boolean", "Math", "JSON"];
18             if (wrapperObjects.indexOf(node.callee.name) > -1) {
19                 context.report(node, "Do not use {{fn}} as a constructor.", { fn: node.callee.name });
20             }
21         }
22     };
23
24 };