Skip to content

Commit 01da7d0

Browse files
mdjermanovicmysticatea
authored andcommittedSep 13, 2019
Fix: eqeqeq rule reports incorrect locations (#12265)
1 parent 319e4d8 commit 01da7d0

File tree

3 files changed

+72
-19
lines changed

3 files changed

+72
-19
lines changed
 

‎lib/rules/eqeqeq.js

+7-19
Original file line numberDiff line numberDiff line change
@@ -116,18 +116,6 @@ module.exports = {
116116
return astUtils.isNullLiteral(node.right) || astUtils.isNullLiteral(node.left);
117117
}
118118

119-
/**
120-
* Gets the location (line and column) of the binary expression's operator
121-
* @param {ASTNode} node The binary expression node to check
122-
* @returns {Object} { line, column } location of operator
123-
* @private
124-
*/
125-
function getOperatorLocation(node) {
126-
const opToken = sourceCode.getTokenAfter(node.left);
127-
128-
return { line: opToken.loc.start.line, column: opToken.loc.start.column };
129-
}
130-
131119
/**
132120
* Reports a message for this rule.
133121
* @param {ASTNode} node The binary expression node that was checked
@@ -136,21 +124,21 @@ module.exports = {
136124
* @private
137125
*/
138126
function report(node, expectedOperator) {
127+
const operatorToken = sourceCode.getFirstTokenBetween(
128+
node.left,
129+
node.right,
130+
token => token.value === node.operator
131+
);
132+
139133
context.report({
140134
node,
141-
loc: getOperatorLocation(node),
135+
loc: operatorToken.loc,
142136
messageId: "unexpected",
143137
data: { expectedOperator, actualOperator: node.operator },
144138
fix(fixer) {
145139

146140
// If the comparison is a `typeof` comparison or both sides are literals with the same type, then it's safe to fix.
147141
if (isTypeOfBinary(node) || areLiteralsAndSameType(node)) {
148-
const operatorToken = sourceCode.getFirstTokenBetween(
149-
node.left,
150-
node.right,
151-
token => token.value === node.operator
152-
);
153-
154142
return fixer.replaceText(operatorToken, expectedOperator);
155143
}
156144
return null;

‎tests/lib/cli-engine/cli-engine.js

+2
Original file line numberDiff line numberDiff line change
@@ -1641,6 +1641,8 @@ describe("CLIEngine", () => {
16411641
{
16421642
column: 9,
16431643
line: 2,
1644+
endColumn: 11,
1645+
endLine: 2,
16441646
message: "Expected '===' and instead saw '=='.",
16451647
messageId: "unexpected",
16461648
nodeType: "BinaryExpression",

‎tests/lib/rules/eqeqeq.js

+63
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,69 @@ ruleTester.run("eqeqeq", rule, {
105105
{ messageId: "unexpected", data: wantedNotEqEq, type: "BinaryExpression", line: 1 },
106106
{ messageId: "unexpected", data: wantedNotEqEq, type: "BinaryExpression", line: 1 }
107107
]
108+
},
109+
110+
// location tests
111+
{
112+
code: "a == b;",
113+
errors: [
114+
{
115+
messageId: "unexpected",
116+
data: wantedEqEqEq,
117+
type: "BinaryExpression",
118+
column: 3,
119+
endColumn: 5
120+
}
121+
]
122+
},
123+
{
124+
code: "a!=b;",
125+
errors: [
126+
{
127+
messageId: "unexpected",
128+
data: wantedNotEqEq,
129+
type: "BinaryExpression",
130+
column: 2,
131+
endColumn: 4
132+
}
133+
]
134+
},
135+
{
136+
code: "(a + b) == c;",
137+
errors: [
138+
{
139+
messageId: "unexpected",
140+
data: wantedEqEqEq,
141+
type: "BinaryExpression",
142+
column: 9,
143+
endColumn: 11
144+
}
145+
]
146+
},
147+
{
148+
code: "(a + b) != c;",
149+
errors: [
150+
{
151+
messageId: "unexpected",
152+
data: wantedNotEqEq,
153+
type: "BinaryExpression",
154+
column: 10,
155+
endColumn: 12
156+
}
157+
]
158+
},
159+
{
160+
code: "((1) ) == (2);",
161+
output: "((1) ) === (2);",
162+
errors: [
163+
{
164+
messageId: "unexpected",
165+
data: wantedEqEqEq,
166+
type: "BinaryExpression",
167+
column: 9,
168+
endColumn: 11
169+
}
170+
]
108171
}
109172

110173
// If no output is provided, assert that no output is produced.

0 commit comments

Comments
 (0)
Please sign in to comment.