Skip to content

Commit 5bbc6d7

Browse files
Trotttargos
authored andcommittedMay 28, 2019
assert: remove unreachable code
There is only one entry in `kReadableOperator` that ends in `Unequal`. So the value assigned on line 392 can only be truthy if `operator` is `notDeepEqual`. Therefore, the ternary condition on line 394 is always true. Remove the ternary. Coverage reports confirm that the removed code is unused. PR-URL: #27840 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Beth Griggs <[email protected]> Reviewed-By: Ouyang Yadong <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
1 parent 10e0d7f commit 5bbc6d7

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed
 

‎lib/internal/assert/assertion_error.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -391,10 +391,9 @@ class AssertionError extends Error {
391391
if (operator === 'deepEqual') {
392392
res = `${knownOperator}\n\n${res}\n\nshould loosely deep-equal\n\n`;
393393
} else {
394-
const newOperator = kReadableOperator[`${operator}Unequal`];
395-
if (newOperator) {
396-
const eq = operator === 'notDeepEqual' ? 'deep-equal' : 'equal';
397-
res = `${newOperator}\n\n${res}\n\nshould not loosely ${eq}\n\n`;
394+
const newOp = kReadableOperator[`${operator}Unequal`];
395+
if (newOp) {
396+
res = `${newOp}\n\n${res}\n\nshould not loosely deep-equal\n\n`;
398397
} else {
399398
other = ` ${operator} ${other}`;
400399
}

0 commit comments

Comments
 (0)
Please sign in to comment.