]> git.proxmox.com Git - pve-eslint.git/blame - eslint/lib/rules/no-setter-return.js
import 8.4.0 source
[pve-eslint.git] / eslint / lib / rules / no-setter-return.js
CommitLineData
eb39fafa
DC
1/**
2 * @fileoverview Rule to disallow returning values from setters
3 * @author Milos Djermanovic
4 */
5
6"use strict";
7
8//------------------------------------------------------------------------------
9// Requirements
10//------------------------------------------------------------------------------
11
12const astUtils = require("./utils/ast-utils");
13const { findVariable } = require("eslint-utils");
14
15//------------------------------------------------------------------------------
16// Helpers
17//------------------------------------------------------------------------------
18
19/**
20 * Determines whether the given identifier node is a reference to a global variable.
21 * @param {ASTNode} node `Identifier` node to check.
22 * @param {Scope} scope Scope to which the node belongs.
23 * @returns {boolean} True if the identifier is a reference to a global variable.
24 */
25function isGlobalReference(node, scope) {
26 const variable = findVariable(scope, node);
27
28 return variable !== null && variable.scope.type === "global" && variable.defs.length === 0;
29}
30
31/**
32 * Determines whether the given node is an argument of the specified global method call, at the given `index` position.
33 * E.g., for given `index === 1`, this function checks for `objectName.methodName(foo, node)`, where objectName is a global variable.
34 * @param {ASTNode} node The node to check.
35 * @param {Scope} scope Scope to which the node belongs.
36 * @param {string} objectName Name of the global object.
37 * @param {string} methodName Name of the method.
38 * @param {number} index The given position.
39 * @returns {boolean} `true` if the node is argument at the given position.
40 */
41function isArgumentOfGlobalMethodCall(node, scope, objectName, methodName, index) {
6f036462 42 const callNode = node.parent;
eb39fafa 43
6f036462
TL
44 return callNode.type === "CallExpression" &&
45 callNode.arguments[index] === node &&
46 astUtils.isSpecificMemberAccess(callNode.callee, objectName, methodName) &&
47 isGlobalReference(astUtils.skipChainExpression(callNode.callee).object, scope);
eb39fafa
DC
48}
49
50/**
51 * Determines whether the given node is used as a property descriptor.
52 * @param {ASTNode} node The node to check.
53 * @param {Scope} scope Scope to which the node belongs.
54 * @returns {boolean} `true` if the node is a property descriptor.
55 */
56function isPropertyDescriptor(node, scope) {
57 if (
58 isArgumentOfGlobalMethodCall(node, scope, "Object", "defineProperty", 2) ||
59 isArgumentOfGlobalMethodCall(node, scope, "Reflect", "defineProperty", 2)
60 ) {
61 return true;
62 }
63
64 const parent = node.parent;
65
66 if (
67 parent.type === "Property" &&
68 parent.value === node
69 ) {
70 const grandparent = parent.parent;
71
72 if (
73 grandparent.type === "ObjectExpression" &&
74 (
75 isArgumentOfGlobalMethodCall(grandparent, scope, "Object", "create", 1) ||
76 isArgumentOfGlobalMethodCall(grandparent, scope, "Object", "defineProperties", 1)
77 )
78 ) {
79 return true;
80 }
81 }
82
83 return false;
84}
85
86/**
87 * Determines whether the given function node is used as a setter function.
88 * @param {ASTNode} node The node to check.
89 * @param {Scope} scope Scope to which the node belongs.
90 * @returns {boolean} `true` if the node is a setter.
91 */
92function isSetter(node, scope) {
93 const parent = node.parent;
94
95 if (
609c276f 96 (parent.type === "Property" || parent.type === "MethodDefinition") &&
eb39fafa
DC
97 parent.kind === "set" &&
98 parent.value === node
99 ) {
100
101 // Setter in an object literal or in a class
102 return true;
103 }
104
105 if (
106 parent.type === "Property" &&
107 parent.value === node &&
108 astUtils.getStaticPropertyName(parent) === "set" &&
109 parent.parent.type === "ObjectExpression" &&
110 isPropertyDescriptor(parent.parent, scope)
111 ) {
112
113 // Setter in a property descriptor
114 return true;
115 }
116
117 return false;
118}
119
120/**
121 * Finds function's outer scope.
122 * @param {Scope} scope Function's own scope.
123 * @returns {Scope} Function's outer scope.
124 */
125function getOuterScope(scope) {
126 const upper = scope.upper;
127
128 if (upper.type === "function-expression-name") {
129 return upper.upper;
130 }
131
132 return upper;
133}
134
135//------------------------------------------------------------------------------
136// Rule Definition
137//------------------------------------------------------------------------------
138
34eeec05 139/** @type {import('../shared/types').Rule} */
eb39fafa
DC
140module.exports = {
141 meta: {
142 type: "problem",
143
144 docs: {
145 description: "disallow returning values from setters",
eb39fafa
DC
146 recommended: true,
147 url: "https://eslint.org/docs/rules/no-setter-return"
148 },
149
150 schema: [],
151
152 messages: {
153 returnsValue: "Setter cannot return a value."
154 }
155 },
156
157 create(context) {
158 let funcInfo = null;
159
160 /**
161 * Creates and pushes to the stack a function info object for the given function node.
162 * @param {ASTNode} node The function node.
163 * @returns {void}
164 */
165 function enterFunction(node) {
166 const outerScope = getOuterScope(context.getScope());
167
168 funcInfo = {
169 upper: funcInfo,
170 isSetter: isSetter(node, outerScope)
171 };
172 }
173
174 /**
175 * Pops the current function info object from the stack.
176 * @returns {void}
177 */
178 function exitFunction() {
179 funcInfo = funcInfo.upper;
180 }
181
182 /**
183 * Reports the given node.
184 * @param {ASTNode} node Node to report.
185 * @returns {void}
186 */
187 function report(node) {
188 context.report({ node, messageId: "returnsValue" });
189 }
190
191 return {
192
193 /*
194 * Function declarations cannot be setters, but we still have to track them in the `funcInfo` stack to avoid
195 * false positives, because a ReturnStatement node can belong to a function declaration inside a setter.
196 *
197 * Note: A previously declared function can be referenced and actually used as a setter in a property descriptor,
198 * but that's out of scope for this rule.
199 */
200 FunctionDeclaration: enterFunction,
201 FunctionExpression: enterFunction,
202 ArrowFunctionExpression(node) {
203 enterFunction(node);
204
205 if (funcInfo.isSetter && node.expression) {
206
207 // { set: foo => bar } property descriptor. Report implicit return 'bar' as the equivalent for a return statement.
208 report(node.body);
209 }
210 },
211
212 "FunctionDeclaration:exit": exitFunction,
213 "FunctionExpression:exit": exitFunction,
214 "ArrowFunctionExpression:exit": exitFunction,
215
216 ReturnStatement(node) {
217
218 // Global returns (e.g., at the top level of a Node module) don't have `funcInfo`.
219 if (funcInfo && funcInfo.isSetter && node.argument) {
220 report(node);
221 }
222 }
223 };
224 }
225};