summaryrefslogtreecommitdiff
path: root/lib/util.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/util.js')
-rw-r--r--lib/util.js53
1 files changed, 42 insertions, 11 deletions
diff --git a/lib/util.js b/lib/util.js
index f358adefdb..2ef7e4e54c 100644
--- a/lib/util.js
+++ b/lib/util.js
@@ -629,6 +629,9 @@ function formatValue(ctx, value, recurseTimes, ln) {
} else {
extra = '[items unknown]';
}
+ } else if (types.isModuleNamespaceObject(value)) {
+ braces[0] = `[${tag}] {`;
+ formatter = formatNamespaceObject;
} else {
// Check boxed primitives other than string with valueOf()
// NOTE: `Date` has to be checked first!
@@ -757,6 +760,15 @@ function formatObject(ctx, value, recurseTimes, keys) {
return output;
}
+function formatNamespaceObject(ctx, value, recurseTimes, keys) {
+ const len = keys.length;
+ const output = new Array(len);
+ for (var i = 0; i < len; i++) {
+ output[i] = formatNamespaceProperty(ctx, value, recurseTimes, keys[i]);
+ }
+ return output;
+}
+
// The array is sparse and/or has extra keys
function formatSpecialArray(ctx, value, recurseTimes, keys, maxLength, valLen) {
const output = [];
@@ -980,8 +992,36 @@ function formatPromise(ctx, value, recurseTimes, keys) {
return output;
}
+function formatKey(ctx, key, enumerable) {
+ if (typeof key === 'symbol') {
+ return `[${ctx.stylize(key.toString(), 'symbol')}]`;
+ }
+ if (enumerable === false) {
+ return `[${key}]`;
+ }
+ if (keyStrRegExp.test(key)) {
+ return ctx.stylize(key, 'name');
+ }
+ return ctx.stylize(strEscape(key), 'string');
+}
+
+function formatNamespaceProperty(ctx, ns, recurseTimes, key) {
+ let value;
+ try {
+ value = formatValue(ctx, ns[key], recurseTimes, true);
+ } catch (err) {
+ if (err instanceof ReferenceError) {
+ value = ctx.stylize('<uninitialized>', 'special');
+ } else {
+ throw err;
+ }
+ }
+
+ return `${formatKey(ctx, key)}: ${value}`;
+}
+
function formatProperty(ctx, value, recurseTimes, key, array) {
- let name, str;
+ let str;
const desc = Object.getOwnPropertyDescriptor(value, key) ||
{ value: value[key], enumerable: true };
if (desc.value !== undefined) {
@@ -1003,17 +1043,8 @@ function formatProperty(ctx, value, recurseTimes, key, array) {
if (array === 1) {
return str;
}
- if (typeof key === 'symbol') {
- name = `[${ctx.stylize(key.toString(), 'symbol')}]`;
- } else if (desc.enumerable === false) {
- name = `[${key}]`;
- } else if (keyStrRegExp.test(key)) {
- name = ctx.stylize(key, 'name');
- } else {
- name = ctx.stylize(strEscape(key), 'string');
- }
- return `${name}: ${str}`;
+ return `${formatKey(ctx, key, desc.enumerable)}: ${str}`;
}
function reduceToSingleString(ctx, output, base, braces, addLn) {