2 * @fileoverview Rule to flag assignment of the exception parameter
3 * @author Stephen Murray <spmurrayzzz>
8 const astUtils = require("./utils/ast-utils");
10 //------------------------------------------------------------------------------
12 //------------------------------------------------------------------------------
19 description: "disallow reassigning exceptions in `catch` clauses",
20 category: "Possible Errors",
22 url: "https://eslint.org/docs/rules/no-ex-assign"
28 unexpected: "Do not assign to the exception parameter."
35 * Finds and reports references that are non initializer and writable.
36 * @param {Variable} variable A variable to check.
39 function checkVariable(variable) {
40 astUtils.getModifyingReferences(variable.references).forEach(reference => {
41 context.report({ node: reference.identifier, messageId: "unexpected" });
47 context.getDeclaredVariables(node).forEach(checkVariable);