Skip to content

Commit 67d683d

Browse files
authored
fix: fix crash when message.fix is nullish (#19168)
* fix: fix crash when `message.fix` is nil * chore: teak test case title * chore: update test cases
1 parent bf2a4f6 commit 67d683d

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

lib/linter/source-code-fixer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ SourceCodeFixer.applyFixes = function(sourceText, messages, shouldFix) {
107107
}
108108

109109
messages.forEach(problem => {
110-
if (Object.hasOwn(problem, "fix")) {
110+
if (Object.hasOwn(problem, "fix") && problem.fix) {
111111
fixes.push(problem);
112112
} else {
113113
remainingMessages.push(problem);

tests/lib/linter/source-code-fixer.js

+28
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,14 @@ const INSERT_AT_END = {
127127
range: [3, 0],
128128
text: " "
129129
}
130+
},
131+
UNDEFINED_FIX = {
132+
message: "undefined",
133+
fix: void 0
134+
},
135+
NULL_FIX = {
136+
message: "null",
137+
fix: null
130138
};
131139

132140
//------------------------------------------------------------------------------
@@ -421,6 +429,26 @@ describe("SourceCodeFixer", () => {
421429

422430
});
423431

432+
describe("Nullish fixes", () => {
433+
it("should not throw if fix is null", () => {
434+
const result = SourceCodeFixer.applyFixes(TEST_CODE, [NULL_FIX]);
435+
436+
assert.isFalse(result.fixed);
437+
assert.strictEqual(result.output, TEST_CODE);
438+
assert.strictEqual(result.messages.length, 1);
439+
assert.strictEqual(result.messages[0].message, "null");
440+
});
441+
442+
it("should not throw if fix is undefined", () => {
443+
const result = SourceCodeFixer.applyFixes(TEST_CODE, [UNDEFINED_FIX]);
444+
445+
assert.isFalse(result.fixed);
446+
assert.strictEqual(result.output, TEST_CODE);
447+
assert.strictEqual(result.messages.length, 1);
448+
assert.strictEqual(result.messages[0].message, "undefined");
449+
});
450+
});
451+
424452
});
425453

426454
/*

0 commit comments

Comments
 (0)