operator-assignment.js 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. /**
  2. * @fileoverview Rule to replace assignment expressions with operator assignment
  3. * @author Brandon Mills
  4. */
  5. "use strict";
  6. //------------------------------------------------------------------------------
  7. // Requirements
  8. //------------------------------------------------------------------------------
  9. const astUtils = require("./utils/ast-utils");
  10. //------------------------------------------------------------------------------
  11. // Helpers
  12. //------------------------------------------------------------------------------
  13. /**
  14. * Checks whether an operator is commutative and has an operator assignment
  15. * shorthand form.
  16. * @param {string} operator Operator to check.
  17. * @returns {boolean} True if the operator is commutative and has a
  18. * shorthand form.
  19. */
  20. function isCommutativeOperatorWithShorthand(operator) {
  21. return ["*", "&", "^", "|"].indexOf(operator) >= 0;
  22. }
  23. /**
  24. * Checks whether an operator is not commutative and has an operator assignment
  25. * shorthand form.
  26. * @param {string} operator Operator to check.
  27. * @returns {boolean} True if the operator is not commutative and has
  28. * a shorthand form.
  29. */
  30. function isNonCommutativeOperatorWithShorthand(operator) {
  31. return ["+", "-", "/", "%", "<<", ">>", ">>>", "**"].indexOf(operator) >= 0;
  32. }
  33. //------------------------------------------------------------------------------
  34. // Rule Definition
  35. //------------------------------------------------------------------------------
  36. /**
  37. * Determines if the left side of a node can be safely fixed (i.e. if it activates the same getters/setters and)
  38. * toString calls regardless of whether assignment shorthand is used)
  39. * @param {ASTNode} node The node on the left side of the expression
  40. * @returns {boolean} `true` if the node can be fixed
  41. */
  42. function canBeFixed(node) {
  43. return (
  44. node.type === "Identifier" ||
  45. (
  46. node.type === "MemberExpression" &&
  47. (node.object.type === "Identifier" || node.object.type === "ThisExpression") &&
  48. (!node.computed || node.property.type === "Literal")
  49. )
  50. );
  51. }
  52. module.exports = {
  53. meta: {
  54. type: "suggestion",
  55. docs: {
  56. description: "require or disallow assignment operator shorthand where possible",
  57. category: "Stylistic Issues",
  58. recommended: false,
  59. url: "https://eslint.org/docs/rules/operator-assignment"
  60. },
  61. schema: [
  62. {
  63. enum: ["always", "never"]
  64. }
  65. ],
  66. fixable: "code",
  67. messages: {
  68. replaced: "Assignment can be replaced with operator assignment.",
  69. unexpected: "Unexpected operator assignment shorthand."
  70. }
  71. },
  72. create(context) {
  73. const sourceCode = context.getSourceCode();
  74. /**
  75. * Returns the operator token of an AssignmentExpression or BinaryExpression
  76. * @param {ASTNode} node An AssignmentExpression or BinaryExpression node
  77. * @returns {Token} The operator token in the node
  78. */
  79. function getOperatorToken(node) {
  80. return sourceCode.getFirstTokenBetween(node.left, node.right, token => token.value === node.operator);
  81. }
  82. /**
  83. * Ensures that an assignment uses the shorthand form where possible.
  84. * @param {ASTNode} node An AssignmentExpression node.
  85. * @returns {void}
  86. */
  87. function verify(node) {
  88. if (node.operator !== "=" || node.right.type !== "BinaryExpression") {
  89. return;
  90. }
  91. const left = node.left;
  92. const expr = node.right;
  93. const operator = expr.operator;
  94. if (isCommutativeOperatorWithShorthand(operator) || isNonCommutativeOperatorWithShorthand(operator)) {
  95. if (astUtils.isSameReference(left, expr.left, true)) {
  96. context.report({
  97. node,
  98. messageId: "replaced",
  99. fix(fixer) {
  100. if (canBeFixed(left) && canBeFixed(expr.left)) {
  101. const equalsToken = getOperatorToken(node);
  102. const operatorToken = getOperatorToken(expr);
  103. const leftText = sourceCode.getText().slice(node.range[0], equalsToken.range[0]);
  104. const rightText = sourceCode.getText().slice(operatorToken.range[1], node.right.range[1]);
  105. // Check for comments that would be removed.
  106. if (sourceCode.commentsExistBetween(equalsToken, operatorToken)) {
  107. return null;
  108. }
  109. return fixer.replaceText(node, `${leftText}${expr.operator}=${rightText}`);
  110. }
  111. return null;
  112. }
  113. });
  114. } else if (astUtils.isSameReference(left, expr.right, true) && isCommutativeOperatorWithShorthand(operator)) {
  115. /*
  116. * This case can't be fixed safely.
  117. * If `a` and `b` both have custom valueOf() behavior, then fixing `a = b * a` to `a *= b` would
  118. * change the execution order of the valueOf() functions.
  119. */
  120. context.report({
  121. node,
  122. messageId: "replaced"
  123. });
  124. }
  125. }
  126. }
  127. /**
  128. * Warns if an assignment expression uses operator assignment shorthand.
  129. * @param {ASTNode} node An AssignmentExpression node.
  130. * @returns {void}
  131. */
  132. function prohibit(node) {
  133. if (node.operator !== "=" && !astUtils.isLogicalAssignmentOperator(node.operator)) {
  134. context.report({
  135. node,
  136. messageId: "unexpected",
  137. fix(fixer) {
  138. if (canBeFixed(node.left)) {
  139. const firstToken = sourceCode.getFirstToken(node);
  140. const operatorToken = getOperatorToken(node);
  141. const leftText = sourceCode.getText().slice(node.range[0], operatorToken.range[0]);
  142. const newOperator = node.operator.slice(0, -1);
  143. let rightText;
  144. // Check for comments that would be duplicated.
  145. if (sourceCode.commentsExistBetween(firstToken, operatorToken)) {
  146. return null;
  147. }
  148. // If this change would modify precedence (e.g. `foo *= bar + 1` => `foo = foo * (bar + 1)`), parenthesize the right side.
  149. if (
  150. astUtils.getPrecedence(node.right) <= astUtils.getPrecedence({ type: "BinaryExpression", operator: newOperator }) &&
  151. !astUtils.isParenthesised(sourceCode, node.right)
  152. ) {
  153. rightText = `${sourceCode.text.slice(operatorToken.range[1], node.right.range[0])}(${sourceCode.getText(node.right)})`;
  154. } else {
  155. const tokenAfterOperator = sourceCode.getTokenAfter(operatorToken, { includeComments: true });
  156. let rightTextPrefix = "";
  157. if (
  158. operatorToken.range[1] === tokenAfterOperator.range[0] &&
  159. !astUtils.canTokensBeAdjacent({ type: "Punctuator", value: newOperator }, tokenAfterOperator)
  160. ) {
  161. rightTextPrefix = " "; // foo+=+bar -> foo= foo+ +bar
  162. }
  163. rightText = `${rightTextPrefix}${sourceCode.text.slice(operatorToken.range[1], node.range[1])}`;
  164. }
  165. return fixer.replaceText(node, `${leftText}= ${leftText}${newOperator}${rightText}`);
  166. }
  167. return null;
  168. }
  169. });
  170. }
  171. }
  172. return {
  173. AssignmentExpression: context.options[0] !== "never" ? verify : prohibit
  174. };
  175. }
  176. };