Skip to content

Commit 3fb8c9f

Browse files
committed
harness/deepEqual.js: Leverage base assert
1 parent 8aefada commit 3fb8c9f

File tree

2 files changed

+20
-8
lines changed

2 files changed

+20
-8
lines changed

harness/assert.js

+17-5
Original file line numberDiff line numberDiff line change
@@ -101,18 +101,30 @@ assert.throws = function (expectedErrorConstructor, func, message) {
101101
throw new Test262Error(message);
102102
};
103103

104+
assert._formatIdentityFreeValue = function formatIdentityFreeValue(value) {
105+
switch (typeof value) {
106+
case 'string':
107+
return typeof JSON !== "undefined" ? JSON.stringify(value) : `"${value}"`;
108+
case 'bigint':
109+
return `${value}n`;
110+
case 'boolean':
111+
case 'undefined':
112+
case 'number':
113+
return value === 0 && 1 / value === -Infinity ? '-0' : String(value);
114+
default:
115+
if (value === null) return 'null';
116+
}
117+
};
118+
104119
assert._toString = function (value) {
120+
var basic = assert._formatIdentityFreeValue(value);
121+
if (basic) return basic;
105122
try {
106-
if (value === 0 && 1 / value === -Infinity) {
107-
return '-0';
108-
}
109-
110123
return String(value);
111124
} catch (err) {
112125
if (err.name === 'TypeError') {
113126
return Object.prototype.toString.call(value);
114127
}
115-
116128
throw err;
117129
}
118130
};

harness/deepEqual.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ assert.deepEqual.format = (function () {
2828
let renderUsage = usage => usage.used ? ` as #${usage.id}` : '';
2929

3030
return function format(value, seen) {
31+
let basic = assert._formatIdentityFreeValue(value);
32+
if (basic) return basic;
3133
switch (typeof value) {
3234
case 'string':
33-
return typeof JSON !== "undefined" ? JSON.stringify(value) : `"${value}"`;
3435
case 'bigint':
35-
return `${value}n`;
3636
case 'boolean':
3737
case 'undefined':
3838
case 'number':
39-
return value === 0 && 1 / value === -Infinity ? '-0' : String(value);
39+
assert(false, 'values without identity should use basic formatting');
4040
case 'symbol':
4141
case 'function':
4242
case 'object':

0 commit comments

Comments
 (0)