2022-01-07 22:09:52 -05:00
|
|
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-07-06 06:03:12 -04:00
|
|
|
|
|
|
|
/// <reference path="../../core/internal.d.ts" />
|
|
|
|
|
2021-02-04 17:18:32 -05:00
|
|
|
"use strict";
|
2020-07-19 13:49:44 -04:00
|
|
|
|
|
|
|
((window) => {
|
2020-09-10 06:49:47 -04:00
|
|
|
const core = window.Deno.core;
|
2020-09-29 22:59:50 -04:00
|
|
|
const colors = window.__bootstrap.colors;
|
2021-07-06 06:03:12 -04:00
|
|
|
const {
|
|
|
|
ArrayBufferIsView,
|
|
|
|
isNaN,
|
|
|
|
DataView,
|
|
|
|
Date,
|
|
|
|
DateNow,
|
|
|
|
DatePrototypeGetTime,
|
|
|
|
DatePrototypeToISOString,
|
|
|
|
Boolean,
|
|
|
|
BooleanPrototypeToString,
|
|
|
|
ObjectKeys,
|
|
|
|
ObjectCreate,
|
|
|
|
ObjectAssign,
|
|
|
|
ObjectIs,
|
|
|
|
ObjectValues,
|
|
|
|
ObjectFromEntries,
|
|
|
|
ObjectGetPrototypeOf,
|
|
|
|
ObjectGetOwnPropertyDescriptor,
|
|
|
|
ObjectGetOwnPropertySymbols,
|
|
|
|
ObjectPrototypeHasOwnProperty,
|
|
|
|
ObjectPrototypePropertyIsEnumerable,
|
|
|
|
Promise,
|
|
|
|
String,
|
|
|
|
StringPrototypeRepeat,
|
|
|
|
StringPrototypeReplace,
|
|
|
|
StringPrototypeReplaceAll,
|
|
|
|
StringPrototypeSplit,
|
|
|
|
StringPrototypeSlice,
|
|
|
|
StringPrototypeCodePointAt,
|
|
|
|
StringPrototypeCharCodeAt,
|
|
|
|
StringPrototypeNormalize,
|
|
|
|
StringPrototypeMatch,
|
|
|
|
StringPrototypePadStart,
|
|
|
|
StringPrototypeLocaleCompare,
|
|
|
|
StringPrototypeToString,
|
|
|
|
StringPrototypeTrim,
|
|
|
|
StringPrototypeIncludes,
|
|
|
|
TypeError,
|
|
|
|
NumberParseInt,
|
|
|
|
RegExp,
|
|
|
|
RegExpPrototypeTest,
|
|
|
|
RegExpPrototypeToString,
|
|
|
|
Set,
|
|
|
|
SetPrototypeEntries,
|
2021-07-26 07:52:59 -04:00
|
|
|
Symbol,
|
2021-07-06 06:03:12 -04:00
|
|
|
SymbolPrototypeToString,
|
2021-10-13 23:52:08 -04:00
|
|
|
SymbolPrototypeValueOf,
|
2021-07-06 06:03:12 -04:00
|
|
|
SymbolToStringTag,
|
|
|
|
SymbolHasInstance,
|
|
|
|
SymbolFor,
|
|
|
|
Array,
|
|
|
|
ArrayIsArray,
|
|
|
|
ArrayPrototypeJoin,
|
|
|
|
ArrayPrototypeMap,
|
|
|
|
ArrayPrototypeReduce,
|
|
|
|
ArrayPrototypeEntries,
|
|
|
|
ArrayPrototypePush,
|
|
|
|
ArrayPrototypePop,
|
|
|
|
ArrayPrototypeSort,
|
|
|
|
ArrayPrototypeSlice,
|
|
|
|
ArrayPrototypeIncludes,
|
|
|
|
ArrayPrototypeFill,
|
|
|
|
ArrayPrototypeFilter,
|
|
|
|
ArrayPrototypeFind,
|
|
|
|
FunctionPrototypeBind,
|
|
|
|
Map,
|
|
|
|
MapPrototypeHas,
|
|
|
|
MapPrototypeGet,
|
|
|
|
MapPrototypeSet,
|
|
|
|
MapPrototypeDelete,
|
|
|
|
MapPrototypeEntries,
|
|
|
|
MapPrototypeForEach,
|
|
|
|
Error,
|
|
|
|
ErrorCaptureStackTrace,
|
|
|
|
MathAbs,
|
|
|
|
MathMax,
|
|
|
|
MathMin,
|
|
|
|
MathSqrt,
|
|
|
|
MathRound,
|
|
|
|
MathFloor,
|
|
|
|
Number,
|
|
|
|
NumberPrototypeToString,
|
2021-10-13 23:52:08 -04:00
|
|
|
NumberPrototypeValueOf,
|
|
|
|
BigInt,
|
|
|
|
BigIntPrototypeToString,
|
2021-07-08 09:43:36 -04:00
|
|
|
Proxy,
|
|
|
|
ReflectGet,
|
|
|
|
ReflectGetOwnPropertyDescriptor,
|
|
|
|
ReflectGetPrototypeOf,
|
2021-07-06 06:03:12 -04:00
|
|
|
WeakMap,
|
|
|
|
WeakSet,
|
|
|
|
} = window.__bootstrap.primordials;
|
2020-07-19 13:49:44 -04:00
|
|
|
|
2020-09-26 09:59:24 -04:00
|
|
|
function isInvalidDate(x) {
|
2021-07-06 06:03:12 -04:00
|
|
|
return isNaN(DatePrototypeGetTime(x));
|
2020-09-26 09:59:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function hasOwnProperty(obj, v) {
|
|
|
|
if (obj == null) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-07-06 06:03:12 -04:00
|
|
|
return ObjectPrototypeHasOwnProperty(obj, v);
|
2020-09-26 09:59:24 -04:00
|
|
|
}
|
2020-07-19 13:49:44 -04:00
|
|
|
|
2021-02-10 06:52:54 -05:00
|
|
|
function propertyIsEnumerable(obj, prop) {
|
|
|
|
if (
|
|
|
|
obj == null ||
|
|
|
|
typeof obj.propertyIsEnumerable !== "function"
|
|
|
|
) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-07-06 06:03:12 -04:00
|
|
|
return ObjectPrototypePropertyIsEnumerable(obj, prop);
|
2021-02-10 06:52:54 -05:00
|
|
|
}
|
|
|
|
|
2020-07-19 13:49:44 -04:00
|
|
|
// Copyright Joyent, Inc. and other Node contributors. MIT license.
|
|
|
|
// Forked from Node's lib/internal/cli_table.js
|
|
|
|
|
2020-09-18 09:20:55 -04:00
|
|
|
function isTypedArray(x) {
|
2021-07-06 06:03:12 -04:00
|
|
|
return ArrayBufferIsView(x) && !(x instanceof DataView);
|
2020-09-18 09:20:55 -04:00
|
|
|
}
|
|
|
|
|
2020-07-19 13:49:44 -04:00
|
|
|
const tableChars = {
|
|
|
|
middleMiddle: "─",
|
|
|
|
rowMiddle: "┼",
|
|
|
|
topRight: "┐",
|
|
|
|
topLeft: "┌",
|
|
|
|
leftMiddle: "├",
|
|
|
|
topMiddle: "┬",
|
|
|
|
bottomRight: "┘",
|
|
|
|
bottomLeft: "└",
|
|
|
|
bottomMiddle: "┴",
|
|
|
|
rightMiddle: "┤",
|
|
|
|
left: "│ ",
|
|
|
|
right: " │",
|
|
|
|
middle: " │ ",
|
|
|
|
};
|
|
|
|
|
|
|
|
function isFullWidthCodePoint(code) {
|
|
|
|
// Code points are partially derived from:
|
|
|
|
// http://www.unicode.org/Public/UNIDATA/EastAsianWidth.txt
|
|
|
|
return (
|
|
|
|
code >= 0x1100 &&
|
|
|
|
(code <= 0x115f || // Hangul Jamo
|
|
|
|
code === 0x2329 || // LEFT-POINTING ANGLE BRACKET
|
|
|
|
code === 0x232a || // RIGHT-POINTING ANGLE BRACKET
|
|
|
|
// CJK Radicals Supplement .. Enclosed CJK Letters and Months
|
|
|
|
(code >= 0x2e80 && code <= 0x3247 && code !== 0x303f) ||
|
|
|
|
// Enclosed CJK Letters and Months .. CJK Unified Ideographs Extension A
|
|
|
|
(code >= 0x3250 && code <= 0x4dbf) ||
|
|
|
|
// CJK Unified Ideographs .. Yi Radicals
|
|
|
|
(code >= 0x4e00 && code <= 0xa4c6) ||
|
|
|
|
// Hangul Jamo Extended-A
|
|
|
|
(code >= 0xa960 && code <= 0xa97c) ||
|
|
|
|
// Hangul Syllables
|
|
|
|
(code >= 0xac00 && code <= 0xd7a3) ||
|
|
|
|
// CJK Compatibility Ideographs
|
|
|
|
(code >= 0xf900 && code <= 0xfaff) ||
|
|
|
|
// Vertical Forms
|
|
|
|
(code >= 0xfe10 && code <= 0xfe19) ||
|
|
|
|
// CJK Compatibility Forms .. Small Form Variants
|
|
|
|
(code >= 0xfe30 && code <= 0xfe6b) ||
|
|
|
|
// Halfwidth and Fullwidth Forms
|
|
|
|
(code >= 0xff01 && code <= 0xff60) ||
|
|
|
|
(code >= 0xffe0 && code <= 0xffe6) ||
|
|
|
|
// Kana Supplement
|
|
|
|
(code >= 0x1b000 && code <= 0x1b001) ||
|
|
|
|
// Enclosed Ideographic Supplement
|
|
|
|
(code >= 0x1f200 && code <= 0x1f251) ||
|
|
|
|
// Miscellaneous Symbols and Pictographs 0x1f300 - 0x1f5ff
|
|
|
|
// Emoticons 0x1f600 - 0x1f64f
|
|
|
|
(code >= 0x1f300 && code <= 0x1f64f) ||
|
|
|
|
// CJK Unified Ideographs Extension B .. Tertiary Ideographic Plane
|
|
|
|
(code >= 0x20000 && code <= 0x3fffd))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function getStringWidth(str) {
|
2021-07-06 06:03:12 -04:00
|
|
|
str = StringPrototypeNormalize(colors.stripColor(str), "NFC");
|
2020-07-19 13:49:44 -04:00
|
|
|
let width = 0;
|
|
|
|
|
|
|
|
for (const ch of str) {
|
2021-07-06 06:03:12 -04:00
|
|
|
width += isFullWidthCodePoint(StringPrototypeCodePointAt(ch, 0)) ? 2 : 1;
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return width;
|
|
|
|
}
|
|
|
|
|
2021-08-24 11:17:40 -04:00
|
|
|
function renderRow(row, columnWidths, columnRightAlign) {
|
2020-07-19 13:49:44 -04:00
|
|
|
let out = tableChars.left;
|
|
|
|
for (let i = 0; i < row.length; i++) {
|
|
|
|
const cell = row[i];
|
|
|
|
const len = getStringWidth(cell);
|
2021-08-24 11:17:40 -04:00
|
|
|
const padding = StringPrototypeRepeat(" ", columnWidths[i] - len);
|
|
|
|
if (columnRightAlign?.[i]) {
|
|
|
|
out += `${padding}${cell}`;
|
|
|
|
} else {
|
|
|
|
out += `${cell}${padding}`;
|
|
|
|
}
|
2020-07-19 13:49:44 -04:00
|
|
|
if (i !== row.length - 1) {
|
|
|
|
out += tableChars.middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
out += tableChars.right;
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2021-08-24 11:17:40 -04:00
|
|
|
function canRightAlign(value) {
|
|
|
|
const isNumber = !isNaN(value);
|
|
|
|
return isNumber;
|
|
|
|
}
|
|
|
|
|
2020-07-19 13:49:44 -04:00
|
|
|
function cliTable(head, columns) {
|
|
|
|
const rows = [];
|
2021-07-06 06:03:12 -04:00
|
|
|
const columnWidths = ArrayPrototypeMap(head, (h) => getStringWidth(h));
|
|
|
|
const longestColumn = ArrayPrototypeReduce(
|
|
|
|
columns,
|
|
|
|
(n, a) => MathMax(n, a.length),
|
2020-07-19 13:49:44 -04:00
|
|
|
0,
|
|
|
|
);
|
2021-08-24 11:17:40 -04:00
|
|
|
const columnRightAlign = new Array(columnWidths.length).fill(true);
|
2020-07-19 13:49:44 -04:00
|
|
|
|
|
|
|
for (let i = 0; i < head.length; i++) {
|
|
|
|
const column = columns[i];
|
|
|
|
for (let j = 0; j < longestColumn; j++) {
|
|
|
|
if (rows[j] === undefined) {
|
|
|
|
rows[j] = [];
|
|
|
|
}
|
|
|
|
const value = (rows[j][i] = hasOwnProperty(column, j) ? column[j] : "");
|
|
|
|
const width = columnWidths[i] || 0;
|
|
|
|
const counted = getStringWidth(value);
|
2021-07-06 06:03:12 -04:00
|
|
|
columnWidths[i] = MathMax(width, counted);
|
2021-08-24 11:17:40 -04:00
|
|
|
columnRightAlign[i] &= canRightAlign(value);
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-06 06:03:12 -04:00
|
|
|
const divider = ArrayPrototypeMap(
|
|
|
|
columnWidths,
|
|
|
|
(i) => StringPrototypeRepeat(tableChars.middleMiddle, i + 2),
|
2020-07-19 13:49:44 -04:00
|
|
|
);
|
|
|
|
|
2021-07-06 06:03:12 -04:00
|
|
|
let result =
|
|
|
|
`${tableChars.topLeft}${
|
|
|
|
ArrayPrototypeJoin(divider, tableChars.topMiddle)
|
|
|
|
}` +
|
2020-07-19 13:49:44 -04:00
|
|
|
`${tableChars.topRight}\n${renderRow(head, columnWidths)}\n` +
|
2021-07-06 06:03:12 -04:00
|
|
|
`${tableChars.leftMiddle}${
|
|
|
|
ArrayPrototypeJoin(divider, tableChars.rowMiddle)
|
|
|
|
}` +
|
2020-07-19 13:49:44 -04:00
|
|
|
`${tableChars.rightMiddle}\n`;
|
|
|
|
|
|
|
|
for (const row of rows) {
|
2021-08-24 11:17:40 -04:00
|
|
|
result += `${renderRow(row, columnWidths, columnRightAlign)}\n`;
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
result +=
|
2021-07-06 06:03:12 -04:00
|
|
|
`${tableChars.bottomLeft}${
|
|
|
|
ArrayPrototypeJoin(divider, tableChars.bottomMiddle)
|
|
|
|
}` +
|
2020-07-19 13:49:44 -04:00
|
|
|
tableChars.bottomRight;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
/* End of forked part */
|
|
|
|
|
|
|
|
const DEFAULT_INSPECT_OPTIONS = {
|
|
|
|
depth: 4,
|
|
|
|
indentLevel: 0,
|
|
|
|
sorted: false,
|
|
|
|
trailingComma: false,
|
|
|
|
compact: true,
|
|
|
|
iterableLimit: 100,
|
2020-09-08 10:06:26 -04:00
|
|
|
showProxy: false,
|
2020-09-29 22:59:50 -04:00
|
|
|
colors: false,
|
2020-10-11 15:52:20 -04:00
|
|
|
getters: false,
|
2021-02-10 06:52:54 -05:00
|
|
|
showHidden: false,
|
2020-07-19 13:49:44 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
const DEFAULT_INDENT = " "; // Default indent string
|
|
|
|
|
|
|
|
const LINE_BREAKING_LENGTH = 80;
|
|
|
|
const MIN_GROUP_LENGTH = 6;
|
|
|
|
const STR_ABBREVIATE_SIZE = 100;
|
|
|
|
|
|
|
|
const PROMISE_STRING_BASE_LENGTH = 12;
|
|
|
|
|
|
|
|
class CSI {
|
|
|
|
static kClear = "\x1b[1;1H";
|
|
|
|
static kClearScreenDown = "\x1b[0J";
|
|
|
|
}
|
|
|
|
|
|
|
|
function getClassInstanceName(instance) {
|
2020-10-07 16:08:54 -04:00
|
|
|
if (typeof instance != "object") {
|
2020-07-19 13:49:44 -04:00
|
|
|
return "";
|
|
|
|
}
|
2020-10-07 16:08:54 -04:00
|
|
|
const constructor = instance?.constructor;
|
|
|
|
if (typeof constructor == "function") {
|
|
|
|
return constructor.name ?? "";
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2020-09-29 22:59:50 -04:00
|
|
|
function maybeColor(fn, inspectOptions) {
|
|
|
|
return inspectOptions.colors ? fn : (s) => s;
|
|
|
|
}
|
|
|
|
|
2021-04-27 05:54:47 -04:00
|
|
|
function inspectFunction(value, level, inspectOptions) {
|
2021-02-10 06:52:54 -05:00
|
|
|
const cyan = maybeColor(colors.cyan, inspectOptions);
|
2020-09-25 07:36:26 -04:00
|
|
|
if (customInspect in value && typeof value[customInspect] === "function") {
|
2021-06-25 03:19:18 -04:00
|
|
|
return String(value[customInspect](inspect));
|
2020-09-25 07:36:26 -04:00
|
|
|
}
|
2020-10-11 16:04:26 -04:00
|
|
|
// Might be Function/AsyncFunction/GeneratorFunction/AsyncGeneratorFunction
|
2021-07-06 06:03:12 -04:00
|
|
|
let cstrName = ObjectGetPrototypeOf(value)?.constructor?.name;
|
2020-10-11 16:04:26 -04:00
|
|
|
if (!cstrName) {
|
|
|
|
// If prototype is removed or broken,
|
|
|
|
// use generic 'Function' instead.
|
|
|
|
cstrName = "Function";
|
|
|
|
}
|
2021-02-10 06:52:54 -05:00
|
|
|
|
|
|
|
// Our function may have properties, so we want to format those
|
|
|
|
// as if our function was an object
|
|
|
|
// If we didn't find any properties, we will just append an
|
|
|
|
// empty suffix.
|
|
|
|
let suffix = ``;
|
|
|
|
if (
|
2021-07-06 06:03:12 -04:00
|
|
|
ObjectKeys(value).length > 0 ||
|
|
|
|
ObjectGetOwnPropertySymbols(value).length > 0
|
2021-02-10 06:52:54 -05:00
|
|
|
) {
|
2021-04-27 05:54:47 -04:00
|
|
|
const propString = inspectRawObject(value, level, inspectOptions);
|
2021-02-10 06:52:54 -05:00
|
|
|
// Filter out the empty string for the case we only have
|
|
|
|
// non-enumerable symbols.
|
|
|
|
if (
|
|
|
|
propString.length > 0 &&
|
|
|
|
propString !== "{}"
|
|
|
|
) {
|
|
|
|
suffix = ` ${propString}`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-19 13:49:44 -04:00
|
|
|
if (value.name && value.name !== "anonymous") {
|
|
|
|
// from MDN spec
|
2021-02-10 06:52:54 -05:00
|
|
|
return cyan(`[${cstrName}: ${value.name}]`) + suffix;
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
2021-02-10 06:52:54 -05:00
|
|
|
return cyan(`[${cstrName}]`) + suffix;
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function inspectIterable(
|
|
|
|
value,
|
|
|
|
level,
|
|
|
|
options,
|
|
|
|
inspectOptions,
|
|
|
|
) {
|
2020-09-29 22:59:50 -04:00
|
|
|
const cyan = maybeColor(colors.cyan, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
if (level >= inspectOptions.depth) {
|
|
|
|
return cyan(`[${options.typeName}]`);
|
|
|
|
}
|
|
|
|
|
|
|
|
const entries = [];
|
2021-07-06 06:03:12 -04:00
|
|
|
let iter;
|
2021-08-25 07:48:53 -04:00
|
|
|
let valueIsTypedArray = false;
|
2021-07-06 06:03:12 -04:00
|
|
|
|
2021-07-26 07:46:48 -04:00
|
|
|
switch (options.typeName) {
|
|
|
|
case "Map":
|
|
|
|
iter = MapPrototypeEntries(value);
|
|
|
|
break;
|
|
|
|
case "Set":
|
|
|
|
iter = SetPrototypeEntries(value);
|
|
|
|
break;
|
|
|
|
case "Array":
|
|
|
|
iter = ArrayPrototypeEntries(value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (isTypedArray(value)) {
|
|
|
|
iter = ArrayPrototypeEntries(value);
|
2021-08-25 07:48:53 -04:00
|
|
|
valueIsTypedArray = true;
|
2021-07-26 07:46:48 -04:00
|
|
|
} else {
|
|
|
|
throw new TypeError("unreachable");
|
|
|
|
}
|
2021-07-06 06:03:12 -04:00
|
|
|
}
|
2020-07-19 13:49:44 -04:00
|
|
|
|
|
|
|
let entriesLength = 0;
|
|
|
|
const next = () => {
|
|
|
|
return iter.next();
|
|
|
|
};
|
2021-08-25 07:48:53 -04:00
|
|
|
while (true) {
|
|
|
|
let el;
|
|
|
|
try {
|
|
|
|
const res = iter.next();
|
|
|
|
if (res.done) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
el = res.value;
|
|
|
|
} catch (err) {
|
|
|
|
if (valueIsTypedArray) {
|
|
|
|
// TypedArray.prototype.entries doesn't throw, unless the ArrayBuffer
|
|
|
|
// is detached. We don't want to show the exception in that case, so
|
|
|
|
// we catch it here and pretend the ArrayBuffer has no entries (like
|
|
|
|
// Chrome DevTools does).
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
throw err;
|
|
|
|
}
|
2020-07-19 13:49:44 -04:00
|
|
|
if (entriesLength < inspectOptions.iterableLimit) {
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypePush(
|
|
|
|
entries,
|
2020-07-19 13:49:44 -04:00
|
|
|
options.entryHandler(
|
|
|
|
el,
|
|
|
|
level + 1,
|
|
|
|
inspectOptions,
|
2021-07-06 06:03:12 -04:00
|
|
|
FunctionPrototypeBind(next, iter),
|
2020-07-19 13:49:44 -04:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
entriesLength++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.sort) {
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypeSort(entries);
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (entriesLength > inspectOptions.iterableLimit) {
|
|
|
|
const nmore = entriesLength - inspectOptions.iterableLimit;
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypePush(entries, `... ${nmore} more items`);
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
const iPrefix = `${options.displayName ? options.displayName + " " : ""}`;
|
|
|
|
|
2021-07-06 06:03:12 -04:00
|
|
|
const initIndentation = `\n${
|
|
|
|
StringPrototypeRepeat(DEFAULT_INDENT, level + 1)
|
|
|
|
}`;
|
|
|
|
const entryIndentation = `,\n${
|
|
|
|
StringPrototypeRepeat(DEFAULT_INDENT, level + 1)
|
|
|
|
}`;
|
2020-07-19 13:49:44 -04:00
|
|
|
const closingIndentation = `${inspectOptions.trailingComma ? "," : ""}\n${
|
2021-07-06 06:03:12 -04:00
|
|
|
StringPrototypeRepeat(DEFAULT_INDENT, level)
|
2020-07-19 13:49:44 -04:00
|
|
|
}`;
|
|
|
|
|
|
|
|
let iContent;
|
|
|
|
if (options.group && entries.length > MIN_GROUP_LENGTH) {
|
|
|
|
const groups = groupEntries(entries, level, value);
|
|
|
|
iContent = `${initIndentation}${
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypeJoin(groups, entryIndentation)
|
2020-07-19 13:49:44 -04:00
|
|
|
}${closingIndentation}`;
|
|
|
|
} else {
|
2021-07-06 06:03:12 -04:00
|
|
|
iContent = entries.length === 0
|
|
|
|
? ""
|
|
|
|
: ` ${ArrayPrototypeJoin(entries, ", ")} `;
|
2020-07-19 13:49:44 -04:00
|
|
|
if (
|
2020-09-29 22:59:50 -04:00
|
|
|
colors.stripColor(iContent).length > LINE_BREAKING_LENGTH ||
|
2020-07-19 13:49:44 -04:00
|
|
|
!inspectOptions.compact
|
|
|
|
) {
|
|
|
|
iContent = `${initIndentation}${
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypeJoin(entries, entryIndentation)
|
2020-07-19 13:49:44 -04:00
|
|
|
}${closingIndentation}`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return `${iPrefix}${options.delims[0]}${iContent}${options.delims[1]}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ported from Node.js
|
|
|
|
// Copyright Node.js contributors. All rights reserved.
|
|
|
|
function groupEntries(
|
|
|
|
entries,
|
|
|
|
level,
|
|
|
|
value,
|
|
|
|
iterableLimit = 100,
|
|
|
|
) {
|
|
|
|
let totalLength = 0;
|
|
|
|
let maxLength = 0;
|
|
|
|
let entriesLength = entries.length;
|
|
|
|
if (iterableLimit < entriesLength) {
|
|
|
|
// This makes sure the "... n more items" part is not taken into account.
|
|
|
|
entriesLength--;
|
|
|
|
}
|
|
|
|
const separatorSpace = 2; // Add 1 for the space and 1 for the separator.
|
|
|
|
const dataLen = new Array(entriesLength);
|
|
|
|
// Calculate the total length of all output entries and the individual max
|
|
|
|
// entries length of all output entries.
|
|
|
|
// IN PROGRESS: Colors are being taken into account.
|
|
|
|
for (let i = 0; i < entriesLength; i++) {
|
|
|
|
// Taking colors into account: removing the ANSI color
|
|
|
|
// codes from the string before measuring its length
|
2020-09-29 22:59:50 -04:00
|
|
|
const len = colors.stripColor(entries[i]).length;
|
2020-07-19 13:49:44 -04:00
|
|
|
dataLen[i] = len;
|
|
|
|
totalLength += len + separatorSpace;
|
|
|
|
if (maxLength < len) maxLength = len;
|
|
|
|
}
|
|
|
|
// Add two to `maxLength` as we add a single whitespace character plus a comma
|
|
|
|
// in-between two entries.
|
|
|
|
const actualMax = maxLength + separatorSpace;
|
|
|
|
// Check if at least three entries fit next to each other and prevent grouping
|
|
|
|
// of arrays that contains entries of very different length (i.e., if a single
|
|
|
|
// entry is longer than 1/5 of all other entries combined). Otherwise the
|
|
|
|
// space in-between small entries would be enormous.
|
|
|
|
if (
|
|
|
|
actualMax * 3 + (level + 1) < LINE_BREAKING_LENGTH &&
|
|
|
|
(totalLength / actualMax > 5 || maxLength <= 6)
|
|
|
|
) {
|
|
|
|
const approxCharHeights = 2.5;
|
2021-07-06 06:03:12 -04:00
|
|
|
const averageBias = MathSqrt(actualMax - totalLength / entries.length);
|
|
|
|
const biasedMax = MathMax(actualMax - 3 - averageBias, 1);
|
2020-07-19 13:49:44 -04:00
|
|
|
// Dynamically check how many columns seem possible.
|
2021-07-06 06:03:12 -04:00
|
|
|
const columns = MathMin(
|
2020-07-19 13:49:44 -04:00
|
|
|
// Ideally a square should be drawn. We expect a character to be about 2.5
|
|
|
|
// times as high as wide. This is the area formula to calculate a square
|
|
|
|
// which contains n rectangles of size `actualMax * approxCharHeights`.
|
|
|
|
// Divide that by `actualMax` to receive the correct number of columns.
|
|
|
|
// The added bias increases the columns for short entries.
|
2021-07-06 06:03:12 -04:00
|
|
|
MathRound(
|
|
|
|
MathSqrt(approxCharHeights * biasedMax * entriesLength) / biasedMax,
|
2020-07-19 13:49:44 -04:00
|
|
|
),
|
|
|
|
// Do not exceed the breakLength.
|
2021-07-06 06:03:12 -04:00
|
|
|
MathFloor((LINE_BREAKING_LENGTH - (level + 1)) / actualMax),
|
2020-07-19 13:49:44 -04:00
|
|
|
// Limit the columns to a maximum of fifteen.
|
|
|
|
15,
|
|
|
|
);
|
|
|
|
// Return with the original output if no grouping should happen.
|
|
|
|
if (columns <= 1) {
|
|
|
|
return entries;
|
|
|
|
}
|
|
|
|
const tmp = [];
|
|
|
|
const maxLineLength = [];
|
|
|
|
for (let i = 0; i < columns; i++) {
|
|
|
|
let lineMaxLength = 0;
|
|
|
|
for (let j = i; j < entries.length; j += columns) {
|
|
|
|
if (dataLen[j] > lineMaxLength) lineMaxLength = dataLen[j];
|
|
|
|
}
|
|
|
|
lineMaxLength += separatorSpace;
|
|
|
|
maxLineLength[i] = lineMaxLength;
|
|
|
|
}
|
|
|
|
let order = "padStart";
|
|
|
|
if (value !== undefined) {
|
|
|
|
for (let i = 0; i < entries.length; i++) {
|
|
|
|
if (
|
|
|
|
typeof value[i] !== "number" &&
|
|
|
|
typeof value[i] !== "bigint"
|
|
|
|
) {
|
|
|
|
order = "padEnd";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Each iteration creates a single line of grouped entries.
|
|
|
|
for (let i = 0; i < entriesLength; i += columns) {
|
|
|
|
// The last lines may contain less entries than columns.
|
2021-07-06 06:03:12 -04:00
|
|
|
const max = MathMin(i + columns, entriesLength);
|
2020-07-19 13:49:44 -04:00
|
|
|
let str = "";
|
|
|
|
let j = i;
|
|
|
|
for (; j < max - 1; j++) {
|
2020-08-09 19:09:09 -04:00
|
|
|
const lengthOfColorCodes = entries[j].length - dataLen[j];
|
|
|
|
const padding = maxLineLength[j - i] + lengthOfColorCodes;
|
2020-07-19 13:49:44 -04:00
|
|
|
str += `${entries[j]}, `[order](padding, " ");
|
|
|
|
}
|
|
|
|
if (order === "padStart") {
|
2020-08-09 19:09:09 -04:00
|
|
|
const lengthOfColorCodes = entries[j].length - dataLen[j];
|
2020-07-19 13:49:44 -04:00
|
|
|
const padding = maxLineLength[j - i] +
|
2020-08-09 19:09:09 -04:00
|
|
|
lengthOfColorCodes -
|
2020-07-19 13:49:44 -04:00
|
|
|
separatorSpace;
|
2021-07-06 06:03:12 -04:00
|
|
|
str += StringPrototypePadStart(entries[j], padding, " ");
|
2020-07-19 13:49:44 -04:00
|
|
|
} else {
|
|
|
|
str += entries[j];
|
|
|
|
}
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypePush(tmp, str);
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
if (iterableLimit < entries.length) {
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypePush(tmp, entries[entriesLength]);
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
entries = tmp;
|
|
|
|
}
|
|
|
|
return entries;
|
|
|
|
}
|
|
|
|
|
2021-04-27 05:54:47 -04:00
|
|
|
function _inspectValue(
|
2020-07-19 13:49:44 -04:00
|
|
|
value,
|
|
|
|
level,
|
|
|
|
inspectOptions,
|
|
|
|
) {
|
2020-09-10 06:49:47 -04:00
|
|
|
const proxyDetails = core.getProxyDetails(value);
|
2021-06-15 15:33:13 -04:00
|
|
|
if (proxyDetails != null && inspectOptions.showProxy) {
|
|
|
|
return inspectProxy(proxyDetails, level, inspectOptions);
|
2020-09-08 10:06:26 -04:00
|
|
|
}
|
|
|
|
|
2020-09-29 22:59:50 -04:00
|
|
|
const green = maybeColor(colors.green, inspectOptions);
|
|
|
|
const yellow = maybeColor(colors.yellow, inspectOptions);
|
2021-06-14 16:34:44 -04:00
|
|
|
const gray = maybeColor(colors.gray, inspectOptions);
|
2020-09-29 22:59:50 -04:00
|
|
|
const cyan = maybeColor(colors.cyan, inspectOptions);
|
|
|
|
const bold = maybeColor(colors.bold, inspectOptions);
|
|
|
|
const red = maybeColor(colors.red, inspectOptions);
|
|
|
|
|
2020-07-19 13:49:44 -04:00
|
|
|
switch (typeof value) {
|
|
|
|
case "string":
|
2020-09-18 09:28:30 -04:00
|
|
|
return green(quoteString(value));
|
2020-07-19 13:49:44 -04:00
|
|
|
case "number": // Numbers are yellow
|
|
|
|
// Special handling of -0
|
2021-07-06 06:03:12 -04:00
|
|
|
return yellow(ObjectIs(value, -0) ? "-0" : `${value}`);
|
2020-07-19 13:49:44 -04:00
|
|
|
case "boolean": // booleans are yellow
|
|
|
|
return yellow(String(value));
|
2021-06-14 16:34:44 -04:00
|
|
|
case "undefined": // undefined is gray
|
|
|
|
return gray(String(value));
|
2020-07-19 13:49:44 -04:00
|
|
|
case "symbol": // Symbols are green
|
2020-09-23 14:10:35 -04:00
|
|
|
return green(maybeQuoteSymbol(value));
|
2020-07-19 13:49:44 -04:00
|
|
|
case "bigint": // Bigints are yellow
|
|
|
|
return yellow(`${value}n`);
|
|
|
|
case "function": // Function string is cyan
|
2021-04-27 05:54:47 -04:00
|
|
|
if (ctxHas(value)) {
|
2021-02-10 06:52:54 -05:00
|
|
|
// Circular string is cyan
|
|
|
|
return cyan("[Circular]");
|
|
|
|
}
|
|
|
|
|
2021-04-27 05:54:47 -04:00
|
|
|
return inspectFunction(value, level, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
case "object": // null is bold
|
|
|
|
if (value === null) {
|
|
|
|
return bold("null");
|
|
|
|
}
|
|
|
|
|
2021-04-27 05:54:47 -04:00
|
|
|
if (ctxHas(value)) {
|
2020-07-19 13:49:44 -04:00
|
|
|
// Circular string is cyan
|
|
|
|
return cyan("[Circular]");
|
|
|
|
}
|
2021-04-27 05:54:47 -04:00
|
|
|
return inspectObject(value, level, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
default:
|
|
|
|
// Not implemented is red
|
|
|
|
return red("[Not Implemented]");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-27 05:54:47 -04:00
|
|
|
function inspectValue(
|
|
|
|
value,
|
|
|
|
level,
|
|
|
|
inspectOptions,
|
|
|
|
) {
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypePush(CTX_STACK, value);
|
2021-04-27 05:54:47 -04:00
|
|
|
let x;
|
|
|
|
try {
|
|
|
|
x = _inspectValue(value, level, inspectOptions);
|
|
|
|
} finally {
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypePop(CTX_STACK);
|
2021-04-27 05:54:47 -04:00
|
|
|
}
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
2020-07-19 13:49:44 -04:00
|
|
|
// We can match Node's quoting behavior exactly by swapping the double quote and
|
|
|
|
// single quote in this array. That would give preference to single quotes.
|
|
|
|
// However, we prefer double quotes as the default.
|
|
|
|
const QUOTES = ['"', "'", "`"];
|
|
|
|
|
|
|
|
/** Surround the string in quotes.
|
2020-08-24 12:38:21 -04:00
|
|
|
*
|
|
|
|
* The quote symbol is chosen by taking the first of the `QUOTES` array which
|
|
|
|
* does not occur in the string. If they all occur, settle with `QUOTES[0]`.
|
|
|
|
*
|
|
|
|
* Insert a backslash before any occurrence of the chosen quote symbol and
|
|
|
|
* before any backslash.
|
|
|
|
*/
|
2020-07-19 13:49:44 -04:00
|
|
|
function quoteString(string) {
|
2021-07-06 06:03:12 -04:00
|
|
|
const quote =
|
|
|
|
ArrayPrototypeFind(QUOTES, (c) => !StringPrototypeIncludes(string, c)) ??
|
|
|
|
QUOTES[0];
|
2020-07-19 13:49:44 -04:00
|
|
|
const escapePattern = new RegExp(`(?=[${quote}\\\\])`, "g");
|
2021-07-06 06:03:12 -04:00
|
|
|
string = StringPrototypeReplace(string, escapePattern, "\\");
|
2020-08-24 12:38:21 -04:00
|
|
|
string = replaceEscapeSequences(string);
|
|
|
|
return `${quote}${string}${quote}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Replace escape sequences that can modify output.
|
|
|
|
function replaceEscapeSequences(string) {
|
2021-07-06 06:03:12 -04:00
|
|
|
return StringPrototypeReplace(
|
|
|
|
StringPrototypeReplace(
|
|
|
|
StringPrototypeReplace(
|
|
|
|
StringPrototypeReplace(
|
|
|
|
StringPrototypeReplace(
|
|
|
|
StringPrototypeReplace(
|
|
|
|
StringPrototypeReplace(string, /[\b]/g, "\\b"),
|
|
|
|
/\f/g,
|
|
|
|
"\\f",
|
|
|
|
),
|
|
|
|
/\n/g,
|
|
|
|
"\\n",
|
|
|
|
),
|
|
|
|
/\r/g,
|
|
|
|
"\\r",
|
|
|
|
),
|
|
|
|
/\t/g,
|
|
|
|
"\\t",
|
|
|
|
),
|
|
|
|
/\v/g,
|
|
|
|
"\\v",
|
|
|
|
),
|
|
|
|
// deno-lint-ignore no-control-regex
|
|
|
|
/[\x00-\x1f\x7f-\x9f]/g,
|
|
|
|
(c) =>
|
|
|
|
"\\x" +
|
|
|
|
StringPrototypePadStart(
|
|
|
|
NumberPrototypeToString(StringPrototypeCharCodeAt(c, 0), 16),
|
|
|
|
2,
|
|
|
|
"0",
|
|
|
|
),
|
|
|
|
);
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
2020-09-18 11:25:09 -04:00
|
|
|
// Surround a string with quotes when it is required (e.g the string not a valid identifier).
|
|
|
|
function maybeQuoteString(string) {
|
2021-07-06 06:03:12 -04:00
|
|
|
if (RegExpPrototypeTest(/^[a-zA-Z_][a-zA-Z_0-9]*$/, string)) {
|
2020-09-18 11:25:09 -04:00
|
|
|
return replaceEscapeSequences(string);
|
|
|
|
}
|
|
|
|
|
|
|
|
return quoteString(string);
|
|
|
|
}
|
|
|
|
|
2020-09-22 11:10:02 -04:00
|
|
|
// Surround a symbol's description in quotes when it is required (e.g the description has non printable characters).
|
|
|
|
function maybeQuoteSymbol(symbol) {
|
|
|
|
if (symbol.description === undefined) {
|
2021-07-06 06:03:12 -04:00
|
|
|
return SymbolPrototypeToString(symbol);
|
2020-09-22 11:10:02 -04:00
|
|
|
}
|
|
|
|
|
2021-07-06 06:03:12 -04:00
|
|
|
if (RegExpPrototypeTest(/^[a-zA-Z_][a-zA-Z_.0-9]*$/, symbol.description)) {
|
|
|
|
return SymbolPrototypeToString(symbol);
|
2020-09-22 11:10:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return `Symbol(${quoteString(symbol.description)})`;
|
|
|
|
}
|
|
|
|
|
2021-04-27 05:54:47 -04:00
|
|
|
const CTX_STACK = [];
|
|
|
|
function ctxHas(x) {
|
|
|
|
// Only check parent contexts
|
2021-07-06 06:03:12 -04:00
|
|
|
return ArrayPrototypeIncludes(
|
|
|
|
ArrayPrototypeSlice(CTX_STACK, 0, CTX_STACK.length - 1),
|
|
|
|
x,
|
|
|
|
);
|
2021-04-27 05:54:47 -04:00
|
|
|
}
|
|
|
|
|
2020-07-19 13:49:44 -04:00
|
|
|
// Print strings when they are inside of arrays or objects with quotes
|
|
|
|
function inspectValueWithQuotes(
|
|
|
|
value,
|
|
|
|
level,
|
|
|
|
inspectOptions,
|
|
|
|
) {
|
2020-09-29 22:59:50 -04:00
|
|
|
const green = maybeColor(colors.green, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
switch (typeof value) {
|
2020-11-03 10:19:29 -05:00
|
|
|
case "string": {
|
2020-07-19 13:49:44 -04:00
|
|
|
const trunc = value.length > STR_ABBREVIATE_SIZE
|
2021-07-06 06:03:12 -04:00
|
|
|
? StringPrototypeSlice(value, 0, STR_ABBREVIATE_SIZE) + "..."
|
2020-07-19 13:49:44 -04:00
|
|
|
: value;
|
|
|
|
return green(quoteString(trunc)); // Quoted strings are green
|
2020-11-03 10:19:29 -05:00
|
|
|
}
|
2020-07-19 13:49:44 -04:00
|
|
|
default:
|
2021-04-27 05:54:47 -04:00
|
|
|
return inspectValue(value, level, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function inspectArray(
|
|
|
|
value,
|
|
|
|
level,
|
|
|
|
inspectOptions,
|
|
|
|
) {
|
2021-06-14 16:34:44 -04:00
|
|
|
const gray = maybeColor(colors.gray, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
const options = {
|
|
|
|
typeName: "Array",
|
|
|
|
displayName: "",
|
|
|
|
delims: ["[", "]"],
|
2021-04-27 05:54:47 -04:00
|
|
|
entryHandler: (entry, level, inspectOptions, next) => {
|
2020-07-19 13:49:44 -04:00
|
|
|
const [index, val] = entry;
|
|
|
|
let i = index;
|
2021-07-06 06:03:12 -04:00
|
|
|
if (!ObjectPrototypeHasOwnProperty(value, i)) {
|
2020-07-19 13:49:44 -04:00
|
|
|
i++;
|
2021-07-06 06:03:12 -04:00
|
|
|
while (!ObjectPrototypeHasOwnProperty(value, i) && i < value.length) {
|
2020-07-19 13:49:44 -04:00
|
|
|
next();
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
const emptyItems = i - index;
|
|
|
|
const ending = emptyItems > 1 ? "s" : "";
|
2021-06-14 16:34:44 -04:00
|
|
|
return gray(`<${emptyItems} empty item${ending}>`);
|
2020-07-19 13:49:44 -04:00
|
|
|
} else {
|
2021-04-27 05:54:47 -04:00
|
|
|
return inspectValueWithQuotes(val, level, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
group: inspectOptions.compact,
|
|
|
|
sort: false,
|
|
|
|
};
|
2021-04-27 05:54:47 -04:00
|
|
|
return inspectIterable(value, level, options, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function inspectTypedArray(
|
|
|
|
typedArrayName,
|
|
|
|
value,
|
|
|
|
level,
|
|
|
|
inspectOptions,
|
|
|
|
) {
|
|
|
|
const valueLength = value.length;
|
|
|
|
const options = {
|
|
|
|
typeName: typedArrayName,
|
|
|
|
displayName: `${typedArrayName}(${valueLength})`,
|
|
|
|
delims: ["[", "]"],
|
2021-04-27 05:54:47 -04:00
|
|
|
entryHandler: (entry, level, inspectOptions) => {
|
2020-07-19 13:49:44 -04:00
|
|
|
const val = entry[1];
|
2021-04-27 05:54:47 -04:00
|
|
|
return inspectValueWithQuotes(val, level + 1, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
},
|
|
|
|
group: inspectOptions.compact,
|
|
|
|
sort: false,
|
|
|
|
};
|
2021-04-27 05:54:47 -04:00
|
|
|
return inspectIterable(value, level, options, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function inspectSet(
|
|
|
|
value,
|
|
|
|
level,
|
|
|
|
inspectOptions,
|
|
|
|
) {
|
|
|
|
const options = {
|
|
|
|
typeName: "Set",
|
|
|
|
displayName: "Set",
|
|
|
|
delims: ["{", "}"],
|
2021-04-27 05:54:47 -04:00
|
|
|
entryHandler: (entry, level, inspectOptions) => {
|
2020-07-19 13:49:44 -04:00
|
|
|
const val = entry[1];
|
2021-04-27 05:54:47 -04:00
|
|
|
return inspectValueWithQuotes(val, level + 1, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
},
|
|
|
|
group: false,
|
|
|
|
sort: inspectOptions.sorted,
|
|
|
|
};
|
2021-04-27 05:54:47 -04:00
|
|
|
return inspectIterable(value, level, options, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function inspectMap(
|
|
|
|
value,
|
|
|
|
level,
|
|
|
|
inspectOptions,
|
|
|
|
) {
|
|
|
|
const options = {
|
|
|
|
typeName: "Map",
|
|
|
|
displayName: "Map",
|
|
|
|
delims: ["{", "}"],
|
2021-04-27 05:54:47 -04:00
|
|
|
entryHandler: (entry, level, inspectOptions) => {
|
2020-07-19 13:49:44 -04:00
|
|
|
const [key, val] = entry;
|
|
|
|
return `${
|
|
|
|
inspectValueWithQuotes(
|
|
|
|
key,
|
|
|
|
level + 1,
|
|
|
|
inspectOptions,
|
|
|
|
)
|
2021-04-27 05:54:47 -04:00
|
|
|
} => ${inspectValueWithQuotes(val, level + 1, inspectOptions)}`;
|
2020-07-19 13:49:44 -04:00
|
|
|
},
|
|
|
|
group: false,
|
|
|
|
sort: inspectOptions.sorted,
|
|
|
|
};
|
|
|
|
return inspectIterable(
|
|
|
|
value,
|
|
|
|
level,
|
|
|
|
options,
|
|
|
|
inspectOptions,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-09-29 22:59:50 -04:00
|
|
|
function inspectWeakSet(inspectOptions) {
|
|
|
|
const cyan = maybeColor(colors.cyan, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
return `WeakSet { ${cyan("[items unknown]")} }`; // as seen in Node, with cyan color
|
|
|
|
}
|
|
|
|
|
2020-09-29 22:59:50 -04:00
|
|
|
function inspectWeakMap(inspectOptions) {
|
|
|
|
const cyan = maybeColor(colors.cyan, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
return `WeakMap { ${cyan("[items unknown]")} }`; // as seen in Node, with cyan color
|
|
|
|
}
|
|
|
|
|
2020-09-29 22:59:50 -04:00
|
|
|
function inspectDate(value, inspectOptions) {
|
2020-07-19 13:49:44 -04:00
|
|
|
// without quotes, ISO format, in magenta like before
|
2020-09-29 22:59:50 -04:00
|
|
|
const magenta = maybeColor(colors.magenta, inspectOptions);
|
2021-07-06 06:03:12 -04:00
|
|
|
return magenta(
|
|
|
|
isInvalidDate(value) ? "Invalid Date" : DatePrototypeToISOString(value),
|
|
|
|
);
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
2020-09-29 22:59:50 -04:00
|
|
|
function inspectRegExp(value, inspectOptions) {
|
|
|
|
const red = maybeColor(colors.red, inspectOptions);
|
2021-07-06 06:03:12 -04:00
|
|
|
return red(RegExpPrototypeToString(value)); // RegExps are red
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
2021-10-30 13:25:46 -04:00
|
|
|
function inspectError(value) {
|
|
|
|
const causes = [];
|
|
|
|
|
|
|
|
let err = value;
|
|
|
|
while (
|
|
|
|
err.cause instanceof Error && err.cause !== value &&
|
|
|
|
!ArrayPrototypeIncludes(causes, err.cause) // circular check
|
|
|
|
) {
|
|
|
|
ArrayPrototypePush(causes, err.cause);
|
|
|
|
err = err.cause;
|
|
|
|
}
|
|
|
|
|
|
|
|
return `${value.stack}${
|
|
|
|
ArrayPrototypeJoin(
|
|
|
|
ArrayPrototypeMap(causes, (cause) => `\nCaused by ${cause.stack}`),
|
|
|
|
"",
|
|
|
|
)
|
|
|
|
}`;
|
|
|
|
}
|
|
|
|
|
2020-09-29 22:59:50 -04:00
|
|
|
function inspectStringObject(value, inspectOptions) {
|
|
|
|
const cyan = maybeColor(colors.cyan, inspectOptions);
|
2021-07-06 06:03:12 -04:00
|
|
|
return cyan(`[String: "${StringPrototypeToString(value)}"]`); // wrappers are in cyan
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
2020-09-29 22:59:50 -04:00
|
|
|
function inspectBooleanObject(value, inspectOptions) {
|
|
|
|
const cyan = maybeColor(colors.cyan, inspectOptions);
|
2021-07-06 06:03:12 -04:00
|
|
|
return cyan(`[Boolean: ${BooleanPrototypeToString(value)}]`); // wrappers are in cyan
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
2020-09-29 22:59:50 -04:00
|
|
|
function inspectNumberObject(value, inspectOptions) {
|
|
|
|
const cyan = maybeColor(colors.cyan, inspectOptions);
|
2021-10-13 23:52:08 -04:00
|
|
|
// Special handling of -0
|
|
|
|
return cyan(
|
|
|
|
`[Number: ${
|
|
|
|
ObjectIs(NumberPrototypeValueOf(value), -0)
|
|
|
|
? "-0"
|
|
|
|
: NumberPrototypeToString(value)
|
|
|
|
}]`,
|
|
|
|
); // wrappers are in cyan
|
|
|
|
}
|
|
|
|
|
|
|
|
function inspectBigIntObject(value, inspectOptions) {
|
|
|
|
const cyan = maybeColor(colors.cyan, inspectOptions);
|
|
|
|
return cyan(`[BigInt: ${BigIntPrototypeToString(value)}n]`); // wrappers are in cyan
|
|
|
|
}
|
|
|
|
|
|
|
|
function inspectSymbolObject(value, inspectOptions) {
|
|
|
|
const cyan = maybeColor(colors.cyan, inspectOptions);
|
|
|
|
return cyan(`[Symbol: ${maybeQuoteSymbol(SymbolPrototypeValueOf(value))}]`); // wrappers are in cyan
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
const PromiseState = {
|
|
|
|
Pending: 0,
|
|
|
|
Fulfilled: 1,
|
|
|
|
Rejected: 2,
|
|
|
|
};
|
|
|
|
|
|
|
|
function inspectPromise(
|
|
|
|
value,
|
|
|
|
level,
|
|
|
|
inspectOptions,
|
|
|
|
) {
|
2020-09-29 22:59:50 -04:00
|
|
|
const cyan = maybeColor(colors.cyan, inspectOptions);
|
|
|
|
const red = maybeColor(colors.red, inspectOptions);
|
|
|
|
|
2020-09-10 06:49:47 -04:00
|
|
|
const [state, result] = core.getPromiseDetails(value);
|
2020-07-19 13:49:44 -04:00
|
|
|
|
|
|
|
if (state === PromiseState.Pending) {
|
|
|
|
return `Promise { ${cyan("<pending>")} }`;
|
|
|
|
}
|
|
|
|
|
|
|
|
const prefix = state === PromiseState.Fulfilled
|
|
|
|
? ""
|
|
|
|
: `${red("<rejected>")} `;
|
|
|
|
|
|
|
|
const str = `${prefix}${
|
|
|
|
inspectValueWithQuotes(
|
|
|
|
result,
|
|
|
|
level + 1,
|
|
|
|
inspectOptions,
|
|
|
|
)
|
|
|
|
}`;
|
|
|
|
|
|
|
|
if (str.length + PROMISE_STRING_BASE_LENGTH > LINE_BREAKING_LENGTH) {
|
2021-07-06 06:03:12 -04:00
|
|
|
return `Promise {\n${
|
|
|
|
StringPrototypeRepeat(DEFAULT_INDENT, level + 1)
|
|
|
|
}${str}\n}`;
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return `Promise { ${str} }`;
|
|
|
|
}
|
|
|
|
|
2020-09-08 10:06:26 -04:00
|
|
|
function inspectProxy(
|
|
|
|
targetAndHandler,
|
|
|
|
level,
|
|
|
|
inspectOptions,
|
|
|
|
) {
|
2021-04-27 05:54:47 -04:00
|
|
|
return `Proxy ${inspectArray(targetAndHandler, level, inspectOptions)}`;
|
2020-09-08 10:06:26 -04:00
|
|
|
}
|
2020-07-19 13:49:44 -04:00
|
|
|
|
|
|
|
function inspectRawObject(
|
|
|
|
value,
|
|
|
|
level,
|
|
|
|
inspectOptions,
|
|
|
|
) {
|
2020-09-29 22:59:50 -04:00
|
|
|
const cyan = maybeColor(colors.cyan, inspectOptions);
|
|
|
|
|
2020-07-19 13:49:44 -04:00
|
|
|
if (level >= inspectOptions.depth) {
|
|
|
|
return cyan("[Object]"); // wrappers are in cyan
|
|
|
|
}
|
|
|
|
|
|
|
|
let baseString;
|
|
|
|
|
|
|
|
let shouldShowDisplayName = false;
|
|
|
|
let displayName = value[
|
2021-07-06 06:03:12 -04:00
|
|
|
SymbolToStringTag
|
2020-07-19 13:49:44 -04:00
|
|
|
];
|
|
|
|
if (!displayName) {
|
|
|
|
displayName = getClassInstanceName(value);
|
|
|
|
}
|
|
|
|
if (
|
|
|
|
displayName && displayName !== "Object" && displayName !== "anonymous"
|
|
|
|
) {
|
|
|
|
shouldShowDisplayName = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const entries = [];
|
2021-07-06 06:03:12 -04:00
|
|
|
const stringKeys = ObjectKeys(value);
|
|
|
|
const symbolKeys = ObjectGetOwnPropertySymbols(value);
|
2020-07-19 13:49:44 -04:00
|
|
|
if (inspectOptions.sorted) {
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypeSort(stringKeys);
|
|
|
|
ArrayPrototypeSort(
|
|
|
|
symbolKeys,
|
|
|
|
(s1, s2) =>
|
|
|
|
StringPrototypeLocaleCompare(
|
2021-10-12 09:58:04 -04:00
|
|
|
s1.description ?? "",
|
2021-07-06 06:03:12 -04:00
|
|
|
s2.description ?? "",
|
|
|
|
),
|
2020-07-19 13:49:44 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-10-01 05:25:34 -04:00
|
|
|
const red = maybeColor(colors.red, inspectOptions);
|
|
|
|
|
2020-07-19 13:49:44 -04:00
|
|
|
for (const key of stringKeys) {
|
2020-10-11 15:52:20 -04:00
|
|
|
if (inspectOptions.getters) {
|
|
|
|
let propertyValue;
|
|
|
|
let error = null;
|
|
|
|
try {
|
|
|
|
propertyValue = value[key];
|
|
|
|
} catch (error_) {
|
|
|
|
error = error_;
|
|
|
|
}
|
|
|
|
const inspectedValue = error == null
|
|
|
|
? inspectValueWithQuotes(
|
|
|
|
propertyValue,
|
|
|
|
level + 1,
|
|
|
|
inspectOptions,
|
|
|
|
)
|
|
|
|
: red(`[Thrown ${error.name}: ${error.message}]`);
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypePush(
|
|
|
|
entries,
|
|
|
|
`${maybeQuoteString(key)}: ${inspectedValue}`,
|
|
|
|
);
|
2020-10-11 15:52:20 -04:00
|
|
|
} else {
|
2021-07-06 06:03:12 -04:00
|
|
|
const descriptor = ObjectGetOwnPropertyDescriptor(value, key);
|
2020-10-11 15:52:20 -04:00
|
|
|
if (descriptor.get !== undefined && descriptor.set !== undefined) {
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypePush(
|
|
|
|
entries,
|
|
|
|
`${maybeQuoteString(key)}: [Getter/Setter]`,
|
|
|
|
);
|
2020-10-11 15:52:20 -04:00
|
|
|
} else if (descriptor.get !== undefined) {
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypePush(entries, `${maybeQuoteString(key)}: [Getter]`);
|
2020-10-11 15:52:20 -04:00
|
|
|
} else {
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypePush(
|
|
|
|
entries,
|
2020-10-11 15:52:20 -04:00
|
|
|
`${maybeQuoteString(key)}: ${
|
2021-04-27 05:54:47 -04:00
|
|
|
inspectValueWithQuotes(value[key], level + 1, inspectOptions)
|
2020-10-11 15:52:20 -04:00
|
|
|
}`,
|
|
|
|
);
|
|
|
|
}
|
2020-10-01 05:25:34 -04:00
|
|
|
}
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
2020-10-11 15:52:20 -04:00
|
|
|
|
2020-07-19 13:49:44 -04:00
|
|
|
for (const key of symbolKeys) {
|
2021-02-10 06:52:54 -05:00
|
|
|
if (
|
|
|
|
!inspectOptions.showHidden &&
|
|
|
|
!propertyIsEnumerable(value, key)
|
|
|
|
) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-10-11 15:52:20 -04:00
|
|
|
if (inspectOptions.getters) {
|
|
|
|
let propertyValue;
|
|
|
|
let error;
|
|
|
|
try {
|
|
|
|
propertyValue = value[key];
|
|
|
|
} catch (error_) {
|
|
|
|
error = error_;
|
|
|
|
}
|
|
|
|
const inspectedValue = error == null
|
|
|
|
? inspectValueWithQuotes(
|
|
|
|
propertyValue,
|
|
|
|
level + 1,
|
|
|
|
inspectOptions,
|
|
|
|
)
|
|
|
|
: red(`Thrown ${error.name}: ${error.message}`);
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypePush(
|
|
|
|
entries,
|
|
|
|
`[${maybeQuoteSymbol(key)}]: ${inspectedValue}`,
|
|
|
|
);
|
2020-10-11 15:52:20 -04:00
|
|
|
} else {
|
2021-07-06 06:03:12 -04:00
|
|
|
const descriptor = ObjectGetOwnPropertyDescriptor(value, key);
|
2020-10-11 15:52:20 -04:00
|
|
|
if (descriptor.get !== undefined && descriptor.set !== undefined) {
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypePush(
|
|
|
|
entries,
|
|
|
|
`[${maybeQuoteSymbol(key)}]: [Getter/Setter]`,
|
|
|
|
);
|
2020-10-11 15:52:20 -04:00
|
|
|
} else if (descriptor.get !== undefined) {
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypePush(entries, `[${maybeQuoteSymbol(key)}]: [Getter]`);
|
2020-10-11 15:52:20 -04:00
|
|
|
} else {
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypePush(
|
|
|
|
entries,
|
2020-10-11 15:52:20 -04:00
|
|
|
`[${maybeQuoteSymbol(key)}]: ${
|
2021-04-27 05:54:47 -04:00
|
|
|
inspectValueWithQuotes(value[key], level + 1, inspectOptions)
|
2020-10-11 15:52:20 -04:00
|
|
|
}`,
|
|
|
|
);
|
|
|
|
}
|
2020-10-01 05:25:34 -04:00
|
|
|
}
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
2020-10-11 15:52:20 -04:00
|
|
|
|
2020-07-19 13:49:44 -04:00
|
|
|
// Making sure color codes are ignored when calculating the total length
|
|
|
|
const totalLength = entries.length + level +
|
2021-07-06 06:03:12 -04:00
|
|
|
colors.stripColor(ArrayPrototypeJoin(entries, "")).length;
|
2020-07-19 13:49:44 -04:00
|
|
|
|
|
|
|
if (entries.length === 0) {
|
|
|
|
baseString = "{}";
|
|
|
|
} else if (totalLength > LINE_BREAKING_LENGTH || !inspectOptions.compact) {
|
2021-07-06 06:03:12 -04:00
|
|
|
const entryIndent = StringPrototypeRepeat(DEFAULT_INDENT, level + 1);
|
|
|
|
const closingIndent = StringPrototypeRepeat(DEFAULT_INDENT, level);
|
|
|
|
baseString = `{\n${entryIndent}${
|
|
|
|
ArrayPrototypeJoin(entries, `,\n${entryIndent}`)
|
|
|
|
}${inspectOptions.trailingComma ? "," : ""}\n${closingIndent}}`;
|
2020-07-19 13:49:44 -04:00
|
|
|
} else {
|
2021-07-06 06:03:12 -04:00
|
|
|
baseString = `{ ${ArrayPrototypeJoin(entries, ", ")} }`;
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (shouldShowDisplayName) {
|
|
|
|
baseString = `${displayName} ${baseString}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
return baseString;
|
|
|
|
}
|
|
|
|
|
|
|
|
function inspectObject(
|
|
|
|
value,
|
|
|
|
level,
|
|
|
|
inspectOptions,
|
|
|
|
) {
|
|
|
|
if (customInspect in value && typeof value[customInspect] === "function") {
|
2021-06-25 03:19:18 -04:00
|
|
|
return String(value[customInspect](inspect));
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
2021-06-25 03:19:18 -04:00
|
|
|
// This non-unique symbol is used to support op_crates, ie.
|
|
|
|
// in extensions/web we don't want to depend on public
|
|
|
|
// Symbol.for("Deno.customInspect") symbol defined in the public API.
|
|
|
|
// Internal only, shouldn't be used by users.
|
2021-07-06 06:03:12 -04:00
|
|
|
const privateCustomInspect = SymbolFor("Deno.privateCustomInspect");
|
2020-09-17 12:42:36 -04:00
|
|
|
if (
|
2021-06-25 03:19:18 -04:00
|
|
|
privateCustomInspect in value &&
|
|
|
|
typeof value[privateCustomInspect] === "function"
|
2020-09-17 12:42:36 -04:00
|
|
|
) {
|
2021-02-09 10:31:46 -05:00
|
|
|
// TODO(nayeemrmn): `inspect` is passed as an argument because custom
|
2021-04-30 15:51:48 -04:00
|
|
|
// inspect implementations in `extensions` need it, but may not have access
|
2021-02-09 10:31:46 -05:00
|
|
|
// to the `Deno` namespace in web workers. Remove when the `Deno`
|
|
|
|
// namespace is always enabled.
|
2021-06-25 03:19:18 -04:00
|
|
|
return String(value[privateCustomInspect](inspect));
|
2020-09-17 12:42:36 -04:00
|
|
|
}
|
2020-07-19 13:49:44 -04:00
|
|
|
if (value instanceof Error) {
|
2021-10-30 13:25:46 -04:00
|
|
|
return inspectError(value);
|
2021-07-06 06:03:12 -04:00
|
|
|
} else if (ArrayIsArray(value)) {
|
2021-04-27 05:54:47 -04:00
|
|
|
return inspectArray(value, level, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
} else if (value instanceof Number) {
|
2020-09-29 22:59:50 -04:00
|
|
|
return inspectNumberObject(value, inspectOptions);
|
2021-10-13 23:52:08 -04:00
|
|
|
} else if (value instanceof BigInt) {
|
|
|
|
return inspectBigIntObject(value, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
} else if (value instanceof Boolean) {
|
2020-09-29 22:59:50 -04:00
|
|
|
return inspectBooleanObject(value, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
} else if (value instanceof String) {
|
2020-09-29 22:59:50 -04:00
|
|
|
return inspectStringObject(value, inspectOptions);
|
2021-10-13 23:52:08 -04:00
|
|
|
} else if (value instanceof Symbol) {
|
|
|
|
return inspectSymbolObject(value, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
} else if (value instanceof Promise) {
|
2021-04-27 05:54:47 -04:00
|
|
|
return inspectPromise(value, level, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
} else if (value instanceof RegExp) {
|
2020-09-29 22:59:50 -04:00
|
|
|
return inspectRegExp(value, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
} else if (value instanceof Date) {
|
2020-09-29 22:59:50 -04:00
|
|
|
return inspectDate(value, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
} else if (value instanceof Set) {
|
2021-04-27 05:54:47 -04:00
|
|
|
return inspectSet(value, level, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
} else if (value instanceof Map) {
|
2021-04-27 05:54:47 -04:00
|
|
|
return inspectMap(value, level, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
} else if (value instanceof WeakSet) {
|
2020-09-29 22:59:50 -04:00
|
|
|
return inspectWeakSet(inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
} else if (value instanceof WeakMap) {
|
2020-09-29 22:59:50 -04:00
|
|
|
return inspectWeakMap(inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
} else if (isTypedArray(value)) {
|
|
|
|
return inspectTypedArray(
|
2021-07-06 06:03:12 -04:00
|
|
|
ObjectGetPrototypeOf(value).constructor.name,
|
2020-07-19 13:49:44 -04:00
|
|
|
value,
|
|
|
|
level,
|
|
|
|
inspectOptions,
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
// Otherwise, default object formatting
|
2021-04-27 05:54:47 -04:00
|
|
|
return inspectRawObject(value, level, inspectOptions);
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-10 06:49:47 -04:00
|
|
|
const colorKeywords = new Map([
|
|
|
|
["black", "#000000"],
|
|
|
|
["silver", "#c0c0c0"],
|
|
|
|
["gray", "#808080"],
|
|
|
|
["white", "#ffffff"],
|
|
|
|
["maroon", "#800000"],
|
|
|
|
["red", "#ff0000"],
|
|
|
|
["purple", "#800080"],
|
|
|
|
["fuchsia", "#ff00ff"],
|
|
|
|
["green", "#008000"],
|
|
|
|
["lime", "#00ff00"],
|
|
|
|
["olive", "#808000"],
|
|
|
|
["yellow", "#ffff00"],
|
|
|
|
["navy", "#000080"],
|
|
|
|
["blue", "#0000ff"],
|
|
|
|
["teal", "#008080"],
|
|
|
|
["aqua", "#00ffff"],
|
|
|
|
["orange", "#ffa500"],
|
|
|
|
["aliceblue", "#f0f8ff"],
|
|
|
|
["antiquewhite", "#faebd7"],
|
|
|
|
["aquamarine", "#7fffd4"],
|
|
|
|
["azure", "#f0ffff"],
|
|
|
|
["beige", "#f5f5dc"],
|
|
|
|
["bisque", "#ffe4c4"],
|
|
|
|
["blanchedalmond", "#ffebcd"],
|
|
|
|
["blueviolet", "#8a2be2"],
|
|
|
|
["brown", "#a52a2a"],
|
|
|
|
["burlywood", "#deb887"],
|
|
|
|
["cadetblue", "#5f9ea0"],
|
|
|
|
["chartreuse", "#7fff00"],
|
|
|
|
["chocolate", "#d2691e"],
|
|
|
|
["coral", "#ff7f50"],
|
|
|
|
["cornflowerblue", "#6495ed"],
|
|
|
|
["cornsilk", "#fff8dc"],
|
|
|
|
["crimson", "#dc143c"],
|
|
|
|
["cyan", "#00ffff"],
|
|
|
|
["darkblue", "#00008b"],
|
|
|
|
["darkcyan", "#008b8b"],
|
|
|
|
["darkgoldenrod", "#b8860b"],
|
|
|
|
["darkgray", "#a9a9a9"],
|
|
|
|
["darkgreen", "#006400"],
|
|
|
|
["darkgrey", "#a9a9a9"],
|
|
|
|
["darkkhaki", "#bdb76b"],
|
|
|
|
["darkmagenta", "#8b008b"],
|
|
|
|
["darkolivegreen", "#556b2f"],
|
|
|
|
["darkorange", "#ff8c00"],
|
|
|
|
["darkorchid", "#9932cc"],
|
|
|
|
["darkred", "#8b0000"],
|
|
|
|
["darksalmon", "#e9967a"],
|
|
|
|
["darkseagreen", "#8fbc8f"],
|
|
|
|
["darkslateblue", "#483d8b"],
|
|
|
|
["darkslategray", "#2f4f4f"],
|
|
|
|
["darkslategrey", "#2f4f4f"],
|
|
|
|
["darkturquoise", "#00ced1"],
|
|
|
|
["darkviolet", "#9400d3"],
|
|
|
|
["deeppink", "#ff1493"],
|
|
|
|
["deepskyblue", "#00bfff"],
|
|
|
|
["dimgray", "#696969"],
|
|
|
|
["dimgrey", "#696969"],
|
|
|
|
["dodgerblue", "#1e90ff"],
|
|
|
|
["firebrick", "#b22222"],
|
|
|
|
["floralwhite", "#fffaf0"],
|
|
|
|
["forestgreen", "#228b22"],
|
|
|
|
["gainsboro", "#dcdcdc"],
|
|
|
|
["ghostwhite", "#f8f8ff"],
|
|
|
|
["gold", "#ffd700"],
|
|
|
|
["goldenrod", "#daa520"],
|
|
|
|
["greenyellow", "#adff2f"],
|
|
|
|
["grey", "#808080"],
|
|
|
|
["honeydew", "#f0fff0"],
|
|
|
|
["hotpink", "#ff69b4"],
|
|
|
|
["indianred", "#cd5c5c"],
|
|
|
|
["indigo", "#4b0082"],
|
|
|
|
["ivory", "#fffff0"],
|
|
|
|
["khaki", "#f0e68c"],
|
|
|
|
["lavender", "#e6e6fa"],
|
|
|
|
["lavenderblush", "#fff0f5"],
|
|
|
|
["lawngreen", "#7cfc00"],
|
|
|
|
["lemonchiffon", "#fffacd"],
|
|
|
|
["lightblue", "#add8e6"],
|
|
|
|
["lightcoral", "#f08080"],
|
|
|
|
["lightcyan", "#e0ffff"],
|
|
|
|
["lightgoldenrodyellow", "#fafad2"],
|
|
|
|
["lightgray", "#d3d3d3"],
|
|
|
|
["lightgreen", "#90ee90"],
|
|
|
|
["lightgrey", "#d3d3d3"],
|
|
|
|
["lightpink", "#ffb6c1"],
|
|
|
|
["lightsalmon", "#ffa07a"],
|
|
|
|
["lightseagreen", "#20b2aa"],
|
|
|
|
["lightskyblue", "#87cefa"],
|
|
|
|
["lightslategray", "#778899"],
|
|
|
|
["lightslategrey", "#778899"],
|
|
|
|
["lightsteelblue", "#b0c4de"],
|
|
|
|
["lightyellow", "#ffffe0"],
|
|
|
|
["limegreen", "#32cd32"],
|
|
|
|
["linen", "#faf0e6"],
|
|
|
|
["magenta", "#ff00ff"],
|
|
|
|
["mediumaquamarine", "#66cdaa"],
|
|
|
|
["mediumblue", "#0000cd"],
|
|
|
|
["mediumorchid", "#ba55d3"],
|
|
|
|
["mediumpurple", "#9370db"],
|
|
|
|
["mediumseagreen", "#3cb371"],
|
|
|
|
["mediumslateblue", "#7b68ee"],
|
|
|
|
["mediumspringgreen", "#00fa9a"],
|
|
|
|
["mediumturquoise", "#48d1cc"],
|
|
|
|
["mediumvioletred", "#c71585"],
|
|
|
|
["midnightblue", "#191970"],
|
|
|
|
["mintcream", "#f5fffa"],
|
|
|
|
["mistyrose", "#ffe4e1"],
|
|
|
|
["moccasin", "#ffe4b5"],
|
|
|
|
["navajowhite", "#ffdead"],
|
|
|
|
["oldlace", "#fdf5e6"],
|
|
|
|
["olivedrab", "#6b8e23"],
|
|
|
|
["orangered", "#ff4500"],
|
|
|
|
["orchid", "#da70d6"],
|
|
|
|
["palegoldenrod", "#eee8aa"],
|
|
|
|
["palegreen", "#98fb98"],
|
|
|
|
["paleturquoise", "#afeeee"],
|
|
|
|
["palevioletred", "#db7093"],
|
|
|
|
["papayawhip", "#ffefd5"],
|
|
|
|
["peachpuff", "#ffdab9"],
|
|
|
|
["peru", "#cd853f"],
|
|
|
|
["pink", "#ffc0cb"],
|
|
|
|
["plum", "#dda0dd"],
|
|
|
|
["powderblue", "#b0e0e6"],
|
|
|
|
["rosybrown", "#bc8f8f"],
|
|
|
|
["royalblue", "#4169e1"],
|
|
|
|
["saddlebrown", "#8b4513"],
|
|
|
|
["salmon", "#fa8072"],
|
|
|
|
["sandybrown", "#f4a460"],
|
|
|
|
["seagreen", "#2e8b57"],
|
|
|
|
["seashell", "#fff5ee"],
|
|
|
|
["sienna", "#a0522d"],
|
|
|
|
["skyblue", "#87ceeb"],
|
|
|
|
["slateblue", "#6a5acd"],
|
|
|
|
["slategray", "#708090"],
|
|
|
|
["slategrey", "#708090"],
|
|
|
|
["snow", "#fffafa"],
|
|
|
|
["springgreen", "#00ff7f"],
|
|
|
|
["steelblue", "#4682b4"],
|
|
|
|
["tan", "#d2b48c"],
|
|
|
|
["thistle", "#d8bfd8"],
|
|
|
|
["tomato", "#ff6347"],
|
|
|
|
["turquoise", "#40e0d0"],
|
|
|
|
["violet", "#ee82ee"],
|
|
|
|
["wheat", "#f5deb3"],
|
|
|
|
["whitesmoke", "#f5f5f5"],
|
|
|
|
["yellowgreen", "#9acd32"],
|
|
|
|
["rebeccapurple", "#663399"],
|
|
|
|
]);
|
|
|
|
|
|
|
|
function parseCssColor(colorString) {
|
2021-07-06 06:03:12 -04:00
|
|
|
if (MapPrototypeHas(colorKeywords, colorString)) {
|
|
|
|
colorString = MapPrototypeGet(colorKeywords, colorString);
|
2020-09-10 06:49:47 -04:00
|
|
|
}
|
|
|
|
// deno-fmt-ignore
|
2021-07-06 06:03:12 -04:00
|
|
|
const hashMatch = StringPrototypeMatch(colorString, /^#([\dA-Fa-f]{2})([\dA-Fa-f]{2})([\dA-Fa-f]{2})([\dA-Fa-f]{2})?$/);
|
2020-09-10 06:49:47 -04:00
|
|
|
if (hashMatch != null) {
|
|
|
|
return [
|
|
|
|
Number(`0x${hashMatch[1]}`),
|
|
|
|
Number(`0x${hashMatch[2]}`),
|
|
|
|
Number(`0x${hashMatch[3]}`),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
// deno-fmt-ignore
|
2021-07-06 06:03:12 -04:00
|
|
|
const smallHashMatch = StringPrototypeMatch(colorString, /^#([\dA-Fa-f])([\dA-Fa-f])([\dA-Fa-f])([\dA-Fa-f])?$/);
|
2020-09-10 06:49:47 -04:00
|
|
|
if (smallHashMatch != null) {
|
|
|
|
return [
|
|
|
|
Number(`0x${smallHashMatch[1]}0`),
|
|
|
|
Number(`0x${smallHashMatch[2]}0`),
|
|
|
|
Number(`0x${smallHashMatch[3]}0`),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
// deno-fmt-ignore
|
2021-07-06 06:03:12 -04:00
|
|
|
const rgbMatch = StringPrototypeMatch(colorString, /^rgba?\(\s*([+\-]?\d*\.?\d+)\s*,\s*([+\-]?\d*\.?\d+)\s*,\s*([+\-]?\d*\.?\d+)\s*(,\s*([+\-]?\d*\.?\d+)\s*)?\)$/);
|
2020-09-10 06:49:47 -04:00
|
|
|
if (rgbMatch != null) {
|
|
|
|
return [
|
2021-07-06 06:03:12 -04:00
|
|
|
MathRound(MathMax(0, MathMin(255, Number(rgbMatch[1])))),
|
|
|
|
MathRound(MathMax(0, MathMin(255, Number(rgbMatch[2])))),
|
|
|
|
MathRound(MathMax(0, MathMin(255, Number(rgbMatch[3])))),
|
2020-09-10 06:49:47 -04:00
|
|
|
];
|
|
|
|
}
|
|
|
|
// deno-fmt-ignore
|
2021-07-06 06:03:12 -04:00
|
|
|
const hslMatch = StringPrototypeMatch(colorString, /^hsla?\(\s*([+\-]?\d*\.?\d+)\s*,\s*([+\-]?\d*\.?\d+)%\s*,\s*([+\-]?\d*\.?\d+)%\s*(,\s*([+\-]?\d*\.?\d+)\s*)?\)$/);
|
2020-09-10 06:49:47 -04:00
|
|
|
if (hslMatch != null) {
|
|
|
|
// https://www.rapidtables.com/convert/color/hsl-to-rgb.html
|
|
|
|
let h = Number(hslMatch[1]) % 360;
|
|
|
|
if (h < 0) {
|
|
|
|
h += 360;
|
|
|
|
}
|
2021-07-06 06:03:12 -04:00
|
|
|
const s = MathMax(0, MathMin(100, Number(hslMatch[2]))) / 100;
|
|
|
|
const l = MathMax(0, MathMin(100, Number(hslMatch[3]))) / 100;
|
|
|
|
const c = (1 - MathAbs(2 * l - 1)) * s;
|
|
|
|
const x = c * (1 - MathAbs((h / 60) % 2 - 1));
|
2020-09-10 06:49:47 -04:00
|
|
|
const m = l - c / 2;
|
|
|
|
let r_;
|
|
|
|
let g_;
|
|
|
|
let b_;
|
|
|
|
if (h < 60) {
|
|
|
|
[r_, g_, b_] = [c, x, 0];
|
|
|
|
} else if (h < 120) {
|
|
|
|
[r_, g_, b_] = [x, c, 0];
|
|
|
|
} else if (h < 180) {
|
|
|
|
[r_, g_, b_] = [0, c, x];
|
|
|
|
} else if (h < 240) {
|
|
|
|
[r_, g_, b_] = [0, x, c];
|
|
|
|
} else if (h < 300) {
|
|
|
|
[r_, g_, b_] = [x, 0, c];
|
|
|
|
} else {
|
|
|
|
[r_, g_, b_] = [c, 0, x];
|
|
|
|
}
|
|
|
|
return [
|
2021-07-06 06:03:12 -04:00
|
|
|
MathRound((r_ + m) * 255),
|
|
|
|
MathRound((g_ + m) * 255),
|
|
|
|
MathRound((b_ + m) * 255),
|
2020-09-10 06:49:47 -04:00
|
|
|
];
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2020-10-05 05:50:49 -04:00
|
|
|
function getDefaultCss() {
|
|
|
|
return {
|
2020-09-10 06:49:47 -04:00
|
|
|
backgroundColor: null,
|
|
|
|
color: null,
|
|
|
|
fontWeight: null,
|
|
|
|
fontStyle: null,
|
|
|
|
textDecorationColor: null,
|
|
|
|
textDecorationLine: [],
|
|
|
|
};
|
2020-10-05 05:50:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function parseCss(cssString) {
|
|
|
|
const css = getDefaultCss();
|
2020-09-10 06:49:47 -04:00
|
|
|
|
|
|
|
const rawEntries = [];
|
|
|
|
let inValue = false;
|
|
|
|
let currentKey = null;
|
|
|
|
let parenthesesDepth = 0;
|
2020-11-03 10:19:29 -05:00
|
|
|
let currentPart = "";
|
2020-09-10 06:49:47 -04:00
|
|
|
for (let i = 0; i < cssString.length; i++) {
|
|
|
|
const c = cssString[i];
|
|
|
|
if (c == "(") {
|
|
|
|
parenthesesDepth++;
|
|
|
|
} else if (parenthesesDepth > 0) {
|
|
|
|
if (c == ")") {
|
|
|
|
parenthesesDepth--;
|
|
|
|
}
|
|
|
|
} else if (inValue) {
|
|
|
|
if (c == ";") {
|
2021-07-06 06:03:12 -04:00
|
|
|
const value = StringPrototypeTrim(currentPart);
|
2020-09-10 06:49:47 -04:00
|
|
|
if (value != "") {
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypePush(rawEntries, [currentKey, value]);
|
2020-09-10 06:49:47 -04:00
|
|
|
}
|
|
|
|
currentKey = null;
|
|
|
|
currentPart = "";
|
|
|
|
inValue = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else if (c == ":") {
|
2021-07-06 06:03:12 -04:00
|
|
|
currentKey = StringPrototypeTrim(currentPart);
|
2020-09-10 06:49:47 -04:00
|
|
|
currentPart = "";
|
|
|
|
inValue = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
currentPart += c;
|
|
|
|
}
|
|
|
|
if (inValue && parenthesesDepth == 0) {
|
2021-07-06 06:03:12 -04:00
|
|
|
const value = StringPrototypeTrim(currentPart);
|
2020-09-10 06:49:47 -04:00
|
|
|
if (value != "") {
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypePush(rawEntries, [currentKey, value]);
|
2020-09-10 06:49:47 -04:00
|
|
|
}
|
|
|
|
currentKey = null;
|
|
|
|
currentPart = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const [key, value] of rawEntries) {
|
|
|
|
if (key == "background-color") {
|
2021-12-23 07:06:24 -05:00
|
|
|
if (value != null) {
|
|
|
|
css.backgroundColor = value;
|
2020-09-10 06:49:47 -04:00
|
|
|
}
|
|
|
|
} else if (key == "color") {
|
2021-12-23 07:06:24 -05:00
|
|
|
if (value != null) {
|
|
|
|
css.color = value;
|
2020-09-10 06:49:47 -04:00
|
|
|
}
|
|
|
|
} else if (key == "font-weight") {
|
2020-10-05 05:50:49 -04:00
|
|
|
if (value == "bold") {
|
2020-09-10 06:49:47 -04:00
|
|
|
css.fontWeight = value;
|
|
|
|
}
|
|
|
|
} else if (key == "font-style") {
|
2021-07-06 06:03:12 -04:00
|
|
|
if (
|
|
|
|
ArrayPrototypeIncludes(["italic", "oblique", "oblique 14deg"], value)
|
|
|
|
) {
|
2020-10-05 05:50:49 -04:00
|
|
|
css.fontStyle = "italic";
|
2020-09-10 06:49:47 -04:00
|
|
|
}
|
|
|
|
} else if (key == "text-decoration-line") {
|
|
|
|
css.textDecorationLine = [];
|
2021-07-06 06:03:12 -04:00
|
|
|
for (const lineType of StringPrototypeSplit(value, /\s+/g)) {
|
|
|
|
if (
|
|
|
|
ArrayPrototypeIncludes(
|
|
|
|
["line-through", "overline", "underline"],
|
|
|
|
lineType,
|
|
|
|
)
|
|
|
|
) {
|
|
|
|
ArrayPrototypePush(css.textDecorationLine, lineType);
|
2020-09-10 06:49:47 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (key == "text-decoration-color") {
|
|
|
|
const color = parseCssColor(value);
|
|
|
|
if (color != null) {
|
|
|
|
css.textDecorationColor = color;
|
|
|
|
}
|
|
|
|
} else if (key == "text-decoration") {
|
|
|
|
css.textDecorationColor = null;
|
|
|
|
css.textDecorationLine = [];
|
2021-07-06 06:03:12 -04:00
|
|
|
for (const arg of StringPrototypeSplit(value, /\s+/g)) {
|
2020-09-10 06:49:47 -04:00
|
|
|
const maybeColor = parseCssColor(arg);
|
|
|
|
if (maybeColor != null) {
|
|
|
|
css.textDecorationColor = maybeColor;
|
2021-07-06 06:03:12 -04:00
|
|
|
} else if (
|
|
|
|
ArrayPrototypeIncludes(
|
|
|
|
["line-through", "overline", "underline"],
|
|
|
|
arg,
|
|
|
|
)
|
|
|
|
) {
|
|
|
|
ArrayPrototypePush(css.textDecorationLine, arg);
|
2020-09-10 06:49:47 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return css;
|
|
|
|
}
|
|
|
|
|
2020-10-05 05:50:49 -04:00
|
|
|
function colorEquals(color1, color2) {
|
|
|
|
return color1?.[0] == color2?.[0] && color1?.[1] == color2?.[1] &&
|
|
|
|
color1?.[2] == color2?.[2];
|
|
|
|
}
|
|
|
|
|
|
|
|
function cssToAnsi(css, prevCss = null) {
|
|
|
|
prevCss = prevCss ?? getDefaultCss();
|
2020-09-10 06:49:47 -04:00
|
|
|
let ansi = "";
|
2020-10-05 05:50:49 -04:00
|
|
|
if (!colorEquals(css.backgroundColor, prevCss.backgroundColor)) {
|
2021-12-23 07:06:24 -05:00
|
|
|
if (css.backgroundColor == null) {
|
2020-10-05 05:50:49 -04:00
|
|
|
ansi += "\x1b[49m";
|
2021-12-23 07:06:24 -05:00
|
|
|
} else if (css.backgroundColor == "black") {
|
|
|
|
ansi += `\x1b[40m`;
|
|
|
|
} else if (css.backgroundColor == "red") {
|
|
|
|
ansi += `\x1b[41m`;
|
|
|
|
} else if (css.backgroundColor == "green") {
|
|
|
|
ansi += `\x1b[42m`;
|
|
|
|
} else if (css.backgroundColor == "yellow") {
|
|
|
|
ansi += `\x1b[43m`;
|
|
|
|
} else if (css.backgroundColor == "blue") {
|
|
|
|
ansi += `\x1b[44m`;
|
|
|
|
} else if (css.backgroundColor == "magenta") {
|
|
|
|
ansi += `\x1b[45m`;
|
|
|
|
} else if (css.backgroundColor == "cyan") {
|
|
|
|
ansi += `\x1b[46m`;
|
|
|
|
} else if (css.backgroundColor == "white") {
|
|
|
|
ansi += `\x1b[47m`;
|
|
|
|
} else {
|
|
|
|
const [r, g, b] = ArrayIsArray(css.backgroundColor)
|
|
|
|
? css.backgroundColor
|
|
|
|
: parseCssColor(css.backgroundColor);
|
|
|
|
ansi += `\x1b[48;2;${r};${g};${b}m`;
|
2020-10-05 05:50:49 -04:00
|
|
|
}
|
2020-09-10 06:49:47 -04:00
|
|
|
}
|
2020-10-05 05:50:49 -04:00
|
|
|
if (!colorEquals(css.color, prevCss.color)) {
|
2021-12-23 07:06:24 -05:00
|
|
|
if (css.color == null) {
|
2020-10-05 05:50:49 -04:00
|
|
|
ansi += "\x1b[39m";
|
2021-12-23 07:06:24 -05:00
|
|
|
} else if (css.color == "black") {
|
|
|
|
ansi += `\x1b[30m`;
|
|
|
|
} else if (css.color == "red") {
|
|
|
|
ansi += `\x1b[31m`;
|
|
|
|
} else if (css.color == "green") {
|
|
|
|
ansi += `\x1b[32m`;
|
|
|
|
} else if (css.color == "yellow") {
|
|
|
|
ansi += `\x1b[33m`;
|
|
|
|
} else if (css.color == "blue") {
|
|
|
|
ansi += `\x1b[34m`;
|
|
|
|
} else if (css.color == "magenta") {
|
|
|
|
ansi += `\x1b[35m`;
|
|
|
|
} else if (css.color == "cyan") {
|
|
|
|
ansi += `\x1b[36m`;
|
|
|
|
} else if (css.color == "white") {
|
|
|
|
ansi += `\x1b[37m`;
|
|
|
|
} else {
|
|
|
|
const [r, g, b] = ArrayIsArray(css.color)
|
|
|
|
? css.color
|
|
|
|
: parseCssColor(css.color);
|
|
|
|
ansi += `\x1b[38;2;${r};${g};${b}m`;
|
2020-10-05 05:50:49 -04:00
|
|
|
}
|
2020-09-10 06:49:47 -04:00
|
|
|
}
|
2020-10-05 05:50:49 -04:00
|
|
|
if (css.fontWeight != prevCss.fontWeight) {
|
|
|
|
if (css.fontWeight == "bold") {
|
|
|
|
ansi += `\x1b[1m`;
|
|
|
|
} else {
|
|
|
|
ansi += "\x1b[22m";
|
|
|
|
}
|
2020-09-10 06:49:47 -04:00
|
|
|
}
|
2020-10-05 05:50:49 -04:00
|
|
|
if (css.fontStyle != prevCss.fontStyle) {
|
|
|
|
if (css.fontStyle == "italic") {
|
|
|
|
ansi += `\x1b[3m`;
|
|
|
|
} else {
|
|
|
|
ansi += "\x1b[23m";
|
|
|
|
}
|
2020-09-10 06:49:47 -04:00
|
|
|
}
|
2020-10-05 05:50:49 -04:00
|
|
|
if (!colorEquals(css.textDecorationColor, prevCss.textDecorationColor)) {
|
|
|
|
if (css.textDecorationColor != null) {
|
|
|
|
const [r, g, b] = css.textDecorationColor;
|
|
|
|
ansi += `\x1b[58;2;${r};${g};${b}m`;
|
|
|
|
} else {
|
|
|
|
ansi += "\x1b[59m";
|
|
|
|
}
|
2020-09-10 06:49:47 -04:00
|
|
|
}
|
2020-10-05 05:50:49 -04:00
|
|
|
if (
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypeIncludes(css.textDecorationLine, "line-through") !=
|
|
|
|
ArrayPrototypeIncludes(prevCss.textDecorationLine, "line-through")
|
2020-10-05 05:50:49 -04:00
|
|
|
) {
|
2021-07-06 06:03:12 -04:00
|
|
|
if (ArrayPrototypeIncludes(css.textDecorationLine, "line-through")) {
|
2020-10-05 05:50:49 -04:00
|
|
|
ansi += "\x1b[9m";
|
|
|
|
} else {
|
|
|
|
ansi += "\x1b[29m";
|
|
|
|
}
|
2020-09-10 06:49:47 -04:00
|
|
|
}
|
2020-10-05 05:50:49 -04:00
|
|
|
if (
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypeIncludes(css.textDecorationLine, "overline") !=
|
|
|
|
ArrayPrototypeIncludes(prevCss.textDecorationLine, "overline")
|
2020-10-05 05:50:49 -04:00
|
|
|
) {
|
2021-07-06 06:03:12 -04:00
|
|
|
if (ArrayPrototypeIncludes(css.textDecorationLine, "overline")) {
|
2020-10-05 05:50:49 -04:00
|
|
|
ansi += "\x1b[53m";
|
|
|
|
} else {
|
|
|
|
ansi += "\x1b[55m";
|
|
|
|
}
|
2020-09-10 06:49:47 -04:00
|
|
|
}
|
2020-10-05 05:50:49 -04:00
|
|
|
if (
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypeIncludes(css.textDecorationLine, "underline") !=
|
|
|
|
ArrayPrototypeIncludes(prevCss.textDecorationLine, "underline")
|
2020-10-05 05:50:49 -04:00
|
|
|
) {
|
2021-07-06 06:03:12 -04:00
|
|
|
if (ArrayPrototypeIncludes(css.textDecorationLine, "underline")) {
|
2020-10-05 05:50:49 -04:00
|
|
|
ansi += "\x1b[4m";
|
|
|
|
} else {
|
|
|
|
ansi += "\x1b[24m";
|
|
|
|
}
|
2020-09-10 06:49:47 -04:00
|
|
|
}
|
|
|
|
return ansi;
|
|
|
|
}
|
|
|
|
|
|
|
|
function inspectArgs(args, inspectOptions = {}) {
|
2022-01-17 17:23:49 -05:00
|
|
|
const noColor = colors.getNoColor();
|
2020-07-19 13:49:44 -04:00
|
|
|
const rInspectOptions = { ...DEFAULT_INSPECT_OPTIONS, ...inspectOptions };
|
|
|
|
const first = args[0];
|
|
|
|
let a = 0;
|
2020-09-10 06:49:47 -04:00
|
|
|
let string = "";
|
2020-07-19 13:49:44 -04:00
|
|
|
|
2020-09-10 06:49:47 -04:00
|
|
|
if (typeof first == "string" && args.length > 1) {
|
|
|
|
a++;
|
|
|
|
// Index of the first not-yet-appended character. Use this so we only
|
|
|
|
// have to append to `string` when a substitution occurs / at the end.
|
|
|
|
let appendedChars = 0;
|
|
|
|
let usedStyle = false;
|
2020-10-05 05:50:49 -04:00
|
|
|
let prevCss = null;
|
2020-07-19 13:49:44 -04:00
|
|
|
for (let i = 0; i < first.length - 1; i++) {
|
2020-09-10 06:49:47 -04:00
|
|
|
if (first[i] == "%") {
|
|
|
|
const char = first[++i];
|
|
|
|
if (a < args.length) {
|
|
|
|
let formattedArg = null;
|
|
|
|
if (char == "s") {
|
|
|
|
// Format as a string.
|
|
|
|
formattedArg = String(args[a++]);
|
2021-07-06 06:03:12 -04:00
|
|
|
} else if (ArrayPrototypeIncludes(["d", "i"], char)) {
|
2020-09-10 06:49:47 -04:00
|
|
|
// Format as an integer.
|
|
|
|
const value = args[a++];
|
|
|
|
if (typeof value == "bigint") {
|
|
|
|
formattedArg = `${value}n`;
|
|
|
|
} else if (typeof value == "number") {
|
2021-07-06 06:03:12 -04:00
|
|
|
formattedArg = `${NumberParseInt(String(value))}`;
|
2020-09-10 06:49:47 -04:00
|
|
|
} else {
|
|
|
|
formattedArg = "NaN";
|
|
|
|
}
|
|
|
|
} else if (char == "f") {
|
|
|
|
// Format as a floating point value.
|
|
|
|
const value = args[a++];
|
|
|
|
if (typeof value == "number") {
|
|
|
|
formattedArg = `${value}`;
|
|
|
|
} else {
|
|
|
|
formattedArg = "NaN";
|
|
|
|
}
|
2021-07-06 06:03:12 -04:00
|
|
|
} else if (ArrayPrototypeIncludes(["O", "o"], char)) {
|
2020-09-10 06:49:47 -04:00
|
|
|
// Format as an object.
|
|
|
|
formattedArg = inspectValue(
|
|
|
|
args[a++],
|
|
|
|
0,
|
|
|
|
rInspectOptions,
|
|
|
|
);
|
|
|
|
} else if (char == "c") {
|
|
|
|
const value = args[a++];
|
2020-10-05 05:50:49 -04:00
|
|
|
if (!noColor) {
|
|
|
|
const css = parseCss(value);
|
|
|
|
formattedArg = cssToAnsi(css, prevCss);
|
|
|
|
if (formattedArg != "") {
|
|
|
|
usedStyle = true;
|
|
|
|
prevCss = css;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
formattedArg = "";
|
2020-09-10 06:49:47 -04:00
|
|
|
}
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
2020-09-10 06:49:47 -04:00
|
|
|
if (formattedArg != null) {
|
2021-07-06 06:03:12 -04:00
|
|
|
string += StringPrototypeSlice(first, appendedChars, i - 1) +
|
|
|
|
formattedArg;
|
2020-09-10 06:49:47 -04:00
|
|
|
appendedChars = i + 1;
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
2020-09-10 06:49:47 -04:00
|
|
|
}
|
|
|
|
if (char == "%") {
|
2021-07-06 06:03:12 -04:00
|
|
|
string += StringPrototypeSlice(first, appendedChars, i - 1) + "%";
|
2020-09-10 06:49:47 -04:00
|
|
|
appendedChars = i + 1;
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-06 06:03:12 -04:00
|
|
|
string += StringPrototypeSlice(first, appendedChars);
|
2020-09-10 06:49:47 -04:00
|
|
|
if (usedStyle) {
|
|
|
|
string += "\x1b[0m";
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-10 06:49:47 -04:00
|
|
|
for (; a < args.length; a++) {
|
|
|
|
if (a > 0) {
|
|
|
|
string += " ";
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
2020-09-18 09:28:30 -04:00
|
|
|
if (typeof args[a] == "string") {
|
|
|
|
string += args[a];
|
|
|
|
} else {
|
|
|
|
// Use default maximum depth for null or undefined arguments.
|
2021-04-27 05:54:47 -04:00
|
|
|
string += inspectValue(args[a], 0, rInspectOptions);
|
2020-09-18 09:28:30 -04:00
|
|
|
}
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (rInspectOptions.indentLevel > 0) {
|
2021-07-06 06:03:12 -04:00
|
|
|
const groupIndent = StringPrototypeRepeat(
|
|
|
|
DEFAULT_INDENT,
|
|
|
|
rInspectOptions.indentLevel,
|
|
|
|
);
|
|
|
|
string = groupIndent +
|
|
|
|
StringPrototypeReplaceAll(string, "\n", `\n${groupIndent}`);
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
2020-09-10 06:49:47 -04:00
|
|
|
return string;
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
const countMap = new Map();
|
|
|
|
const timerMap = new Map();
|
|
|
|
const isConsoleInstance = Symbol("isConsoleInstance");
|
|
|
|
|
2020-10-15 06:32:03 -04:00
|
|
|
function getConsoleInspectOptions() {
|
|
|
|
return {
|
|
|
|
...DEFAULT_INSPECT_OPTIONS,
|
2022-01-17 17:23:49 -05:00
|
|
|
colors: !colors.getNoColor(),
|
2020-10-15 06:32:03 -04:00
|
|
|
};
|
|
|
|
}
|
2020-09-29 22:59:50 -04:00
|
|
|
|
2020-07-19 13:49:44 -04:00
|
|
|
class Console {
|
|
|
|
#printFunc = null;
|
|
|
|
[isConsoleInstance] = false;
|
|
|
|
|
|
|
|
constructor(printFunc) {
|
|
|
|
this.#printFunc = printFunc;
|
|
|
|
this.indentLevel = 0;
|
|
|
|
this[isConsoleInstance] = true;
|
|
|
|
|
|
|
|
// ref https://console.spec.whatwg.org/#console-namespace
|
|
|
|
// For historical web-compatibility reasons, the namespace object for
|
|
|
|
// console must have as its [[Prototype]] an empty object, created as if
|
|
|
|
// by ObjectCreate(%ObjectPrototype%), instead of %ObjectPrototype%.
|
2021-07-06 06:03:12 -04:00
|
|
|
const console = ObjectCreate({}, {
|
|
|
|
[SymbolToStringTag]: {
|
2021-01-10 12:49:45 -05:00
|
|
|
enumerable: false,
|
|
|
|
writable: false,
|
|
|
|
configurable: true,
|
|
|
|
value: "console",
|
|
|
|
},
|
|
|
|
});
|
2021-07-06 06:03:12 -04:00
|
|
|
ObjectAssign(console, this);
|
2020-07-19 13:49:44 -04:00
|
|
|
return console;
|
|
|
|
}
|
|
|
|
|
|
|
|
log = (...args) => {
|
|
|
|
this.#printFunc(
|
|
|
|
inspectArgs(args, {
|
2020-10-15 06:32:03 -04:00
|
|
|
...getConsoleInspectOptions(),
|
2020-07-19 13:49:44 -04:00
|
|
|
indentLevel: this.indentLevel,
|
|
|
|
}) + "\n",
|
2021-03-18 14:25:25 -04:00
|
|
|
1,
|
2020-07-19 13:49:44 -04:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2021-03-18 14:25:25 -04:00
|
|
|
debug = (...args) => {
|
|
|
|
this.#printFunc(
|
|
|
|
inspectArgs(args, {
|
|
|
|
...getConsoleInspectOptions(),
|
|
|
|
indentLevel: this.indentLevel,
|
|
|
|
}) + "\n",
|
|
|
|
0,
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
info = (...args) => {
|
|
|
|
this.#printFunc(
|
|
|
|
inspectArgs(args, {
|
|
|
|
...getConsoleInspectOptions(),
|
|
|
|
indentLevel: this.indentLevel,
|
|
|
|
}) + "\n",
|
|
|
|
1,
|
|
|
|
);
|
|
|
|
};
|
2020-07-19 13:49:44 -04:00
|
|
|
|
2021-06-16 09:48:39 -04:00
|
|
|
dir = (obj = undefined, options = {}) => {
|
2020-09-29 22:59:50 -04:00
|
|
|
this.#printFunc(
|
2020-10-15 06:32:03 -04:00
|
|
|
inspectArgs([obj], { ...getConsoleInspectOptions(), ...options }) +
|
|
|
|
"\n",
|
2021-03-18 14:25:25 -04:00
|
|
|
1,
|
2020-09-29 22:59:50 -04:00
|
|
|
);
|
2020-07-19 13:49:44 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
dirxml = this.dir;
|
|
|
|
|
|
|
|
warn = (...args) => {
|
|
|
|
this.#printFunc(
|
|
|
|
inspectArgs(args, {
|
2020-10-15 06:32:03 -04:00
|
|
|
...getConsoleInspectOptions(),
|
2020-07-19 13:49:44 -04:00
|
|
|
indentLevel: this.indentLevel,
|
|
|
|
}) + "\n",
|
2021-03-18 14:25:25 -04:00
|
|
|
2,
|
2020-07-19 13:49:44 -04:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2021-03-18 14:25:25 -04:00
|
|
|
error = (...args) => {
|
|
|
|
this.#printFunc(
|
|
|
|
inspectArgs(args, {
|
|
|
|
...getConsoleInspectOptions(),
|
|
|
|
indentLevel: this.indentLevel,
|
|
|
|
}) + "\n",
|
|
|
|
3,
|
|
|
|
);
|
|
|
|
};
|
2020-07-19 13:49:44 -04:00
|
|
|
|
|
|
|
assert = (condition = false, ...args) => {
|
|
|
|
if (condition) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (args.length === 0) {
|
|
|
|
this.error("Assertion failed");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const [first, ...rest] = args;
|
|
|
|
|
|
|
|
if (typeof first === "string") {
|
|
|
|
this.error(`Assertion failed: ${first}`, ...rest);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.error(`Assertion failed:`, ...args);
|
|
|
|
};
|
|
|
|
|
|
|
|
count = (label = "default") => {
|
|
|
|
label = String(label);
|
|
|
|
|
2021-07-06 06:03:12 -04:00
|
|
|
if (MapPrototypeHas(countMap, label)) {
|
|
|
|
const current = MapPrototypeGet(countMap, label) || 0;
|
|
|
|
MapPrototypeSet(countMap, label, current + 1);
|
2020-07-19 13:49:44 -04:00
|
|
|
} else {
|
2021-07-06 06:03:12 -04:00
|
|
|
MapPrototypeSet(countMap, label, 1);
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
2021-07-06 06:03:12 -04:00
|
|
|
this.info(`${label}: ${MapPrototypeGet(countMap, label)}`);
|
2020-07-19 13:49:44 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
countReset = (label = "default") => {
|
|
|
|
label = String(label);
|
|
|
|
|
2021-07-06 06:03:12 -04:00
|
|
|
if (MapPrototypeHas(countMap, label)) {
|
|
|
|
MapPrototypeSet(countMap, label, 0);
|
2020-07-19 13:49:44 -04:00
|
|
|
} else {
|
|
|
|
this.warn(`Count for '${label}' does not exist`);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-06-16 09:48:39 -04:00
|
|
|
table = (data = undefined, properties = undefined) => {
|
2021-07-06 06:03:12 -04:00
|
|
|
if (properties !== undefined && !ArrayIsArray(properties)) {
|
2020-07-19 13:49:44 -04:00
|
|
|
throw new Error(
|
|
|
|
"The 'properties' argument must be of type Array. " +
|
|
|
|
"Received type string",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data === null || typeof data !== "object") {
|
|
|
|
return this.log(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
const stringifyValue = (value) =>
|
2021-04-27 05:54:47 -04:00
|
|
|
inspectValueWithQuotes(value, 0, {
|
2020-07-19 13:49:44 -04:00
|
|
|
...DEFAULT_INSPECT_OPTIONS,
|
|
|
|
depth: 1,
|
|
|
|
});
|
|
|
|
const toTable = (header, body) => this.log(cliTable(header, body));
|
|
|
|
|
|
|
|
let resultData;
|
|
|
|
const isSet = data instanceof Set;
|
|
|
|
const isMap = data instanceof Map;
|
|
|
|
const valuesKey = "Values";
|
|
|
|
const indexKey = isSet || isMap ? "(iter idx)" : "(idx)";
|
|
|
|
|
|
|
|
if (data instanceof Set) {
|
|
|
|
resultData = [...data];
|
|
|
|
} else if (data instanceof Map) {
|
|
|
|
let idx = 0;
|
|
|
|
resultData = {};
|
|
|
|
|
2021-07-06 06:03:12 -04:00
|
|
|
MapPrototypeForEach(data, (v, k) => {
|
2020-07-19 13:49:44 -04:00
|
|
|
resultData[idx] = { Key: k, Values: v };
|
|
|
|
idx++;
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
resultData = data;
|
|
|
|
}
|
|
|
|
|
2021-07-06 06:03:12 -04:00
|
|
|
const keys = ObjectKeys(resultData);
|
2021-04-11 08:19:50 -04:00
|
|
|
const numRows = keys.length;
|
|
|
|
|
|
|
|
const objectValues = properties
|
2021-07-06 06:03:12 -04:00
|
|
|
? ObjectFromEntries(
|
|
|
|
ArrayPrototypeMap(
|
|
|
|
properties,
|
|
|
|
(name) => [name, ArrayPrototypeFill(new Array(numRows), "")],
|
|
|
|
),
|
2021-04-11 08:19:50 -04:00
|
|
|
)
|
|
|
|
: {};
|
|
|
|
const indexKeys = [];
|
|
|
|
const values = [];
|
|
|
|
|
2020-07-19 13:49:44 -04:00
|
|
|
let hasPrimitives = false;
|
2021-04-11 08:19:50 -04:00
|
|
|
keys.forEach((k, idx) => {
|
2020-07-19 13:49:44 -04:00
|
|
|
const value = resultData[k];
|
|
|
|
const primitive = value === null ||
|
|
|
|
(typeof value !== "function" && typeof value !== "object");
|
|
|
|
if (properties === undefined && primitive) {
|
|
|
|
hasPrimitives = true;
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypePush(values, stringifyValue(value));
|
2020-07-19 13:49:44 -04:00
|
|
|
} else {
|
|
|
|
const valueObj = value || {};
|
2021-07-06 06:03:12 -04:00
|
|
|
const keys = properties || ObjectKeys(valueObj);
|
2020-07-19 13:49:44 -04:00
|
|
|
for (const k of keys) {
|
2021-04-11 08:19:50 -04:00
|
|
|
if (!primitive && k in valueObj) {
|
|
|
|
if (!(k in objectValues)) {
|
2021-07-06 06:03:12 -04:00
|
|
|
objectValues[k] = ArrayPrototypeFill(new Array(numRows), "");
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
2021-04-11 08:19:50 -04:00
|
|
|
objectValues[k][idx] = stringifyValue(valueObj[k]);
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
}
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypePush(values, "");
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
2021-07-06 06:03:12 -04:00
|
|
|
ArrayPrototypePush(indexKeys, k);
|
2020-07-19 13:49:44 -04:00
|
|
|
});
|
|
|
|
|
2021-07-06 06:03:12 -04:00
|
|
|
const headerKeys = ObjectKeys(objectValues);
|
|
|
|
const bodyValues = ObjectValues(objectValues);
|
|
|
|
const header = ArrayPrototypeFilter([
|
2020-07-19 13:49:44 -04:00
|
|
|
indexKey,
|
|
|
|
...(properties ||
|
|
|
|
[...headerKeys, !isMap && hasPrimitives && valuesKey]),
|
2021-07-06 06:03:12 -04:00
|
|
|
], Boolean);
|
2020-07-19 13:49:44 -04:00
|
|
|
const body = [indexKeys, ...bodyValues, values];
|
|
|
|
|
|
|
|
toTable(header, body);
|
|
|
|
};
|
|
|
|
|
|
|
|
time = (label = "default") => {
|
|
|
|
label = String(label);
|
|
|
|
|
2021-07-06 06:03:12 -04:00
|
|
|
if (MapPrototypeHas(timerMap, label)) {
|
2020-07-19 13:49:44 -04:00
|
|
|
this.warn(`Timer '${label}' already exists`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-07-06 06:03:12 -04:00
|
|
|
MapPrototypeSet(timerMap, label, DateNow());
|
2020-07-19 13:49:44 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
timeLog = (label = "default", ...args) => {
|
|
|
|
label = String(label);
|
|
|
|
|
2021-07-06 06:03:12 -04:00
|
|
|
if (!MapPrototypeHas(timerMap, label)) {
|
2020-07-19 13:49:44 -04:00
|
|
|
this.warn(`Timer '${label}' does not exists`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-07-06 06:03:12 -04:00
|
|
|
const startTime = MapPrototypeGet(timerMap, label);
|
|
|
|
const duration = DateNow() - startTime;
|
2020-07-19 13:49:44 -04:00
|
|
|
|
|
|
|
this.info(`${label}: ${duration}ms`, ...args);
|
|
|
|
};
|
|
|
|
|
|
|
|
timeEnd = (label = "default") => {
|
|
|
|
label = String(label);
|
|
|
|
|
2021-07-06 06:03:12 -04:00
|
|
|
if (!MapPrototypeHas(timerMap, label)) {
|
2020-07-19 13:49:44 -04:00
|
|
|
this.warn(`Timer '${label}' does not exists`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-07-06 06:03:12 -04:00
|
|
|
const startTime = MapPrototypeGet(timerMap, label);
|
|
|
|
MapPrototypeDelete(timerMap, label);
|
|
|
|
const duration = DateNow() - startTime;
|
2020-07-19 13:49:44 -04:00
|
|
|
|
|
|
|
this.info(`${label}: ${duration}ms`);
|
|
|
|
};
|
|
|
|
|
|
|
|
group = (...label) => {
|
|
|
|
if (label.length > 0) {
|
|
|
|
this.log(...label);
|
|
|
|
}
|
|
|
|
this.indentLevel += 2;
|
|
|
|
};
|
|
|
|
|
|
|
|
groupCollapsed = this.group;
|
|
|
|
|
|
|
|
groupEnd = () => {
|
|
|
|
if (this.indentLevel > 0) {
|
|
|
|
this.indentLevel -= 2;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
clear = () => {
|
|
|
|
this.indentLevel = 0;
|
2021-03-18 14:25:25 -04:00
|
|
|
this.#printFunc(CSI.kClear, 1);
|
|
|
|
this.#printFunc(CSI.kClearScreenDown, 1);
|
2020-07-19 13:49:44 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
trace = (...args) => {
|
2020-09-29 22:59:50 -04:00
|
|
|
const message = inspectArgs(
|
|
|
|
args,
|
2020-10-15 06:32:03 -04:00
|
|
|
{ ...getConsoleInspectOptions(), indentLevel: 0 },
|
2020-09-29 22:59:50 -04:00
|
|
|
);
|
2020-07-19 13:49:44 -04:00
|
|
|
const err = {
|
|
|
|
name: "Trace",
|
|
|
|
message,
|
|
|
|
};
|
2021-07-06 06:03:12 -04:00
|
|
|
ErrorCaptureStackTrace(err, this.trace);
|
2020-07-19 13:49:44 -04:00
|
|
|
this.error(err.stack);
|
|
|
|
};
|
|
|
|
|
2021-07-06 06:03:12 -04:00
|
|
|
static [SymbolHasInstance](instance) {
|
2020-07-19 13:49:44 -04:00
|
|
|
return instance[isConsoleInstance];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-06 06:03:12 -04:00
|
|
|
const customInspect = SymbolFor("Deno.customInspect");
|
2020-07-19 13:49:44 -04:00
|
|
|
|
|
|
|
function inspect(
|
|
|
|
value,
|
|
|
|
inspectOptions = {},
|
|
|
|
) {
|
2021-04-27 05:54:47 -04:00
|
|
|
return inspectValue(value, 0, {
|
2020-09-18 09:28:30 -04:00
|
|
|
...DEFAULT_INSPECT_OPTIONS,
|
|
|
|
...inspectOptions,
|
|
|
|
// TODO(nayeemrmn): Indent level is not supported.
|
|
|
|
indentLevel: 0,
|
|
|
|
});
|
2020-07-19 13:49:44 -04:00
|
|
|
}
|
|
|
|
|
2021-07-08 09:43:36 -04:00
|
|
|
/** Creates a proxy that represents a subset of the properties
|
|
|
|
* of the original object optionally without evaluating the properties
|
|
|
|
* in order to get the values. */
|
|
|
|
function createFilteredInspectProxy({ object, keys, evaluate }) {
|
|
|
|
return new Proxy({}, {
|
|
|
|
get(_target, key) {
|
|
|
|
if (key === SymbolToStringTag) {
|
|
|
|
return object.constructor?.name;
|
|
|
|
} else if (ArrayPrototypeIncludes(keys, key)) {
|
|
|
|
return ReflectGet(object, key);
|
|
|
|
} else {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
getOwnPropertyDescriptor(_target, key) {
|
|
|
|
if (!ArrayPrototypeIncludes(keys, key)) {
|
|
|
|
return undefined;
|
|
|
|
} else if (evaluate) {
|
|
|
|
return getEvaluatedDescriptor(object, key);
|
|
|
|
} else {
|
|
|
|
return getDescendantPropertyDescriptor(object, key) ??
|
|
|
|
getEvaluatedDescriptor(object, key);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
has(_target, key) {
|
|
|
|
return ArrayPrototypeIncludes(keys, key);
|
|
|
|
},
|
|
|
|
ownKeys() {
|
|
|
|
return keys;
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
function getDescendantPropertyDescriptor(object, key) {
|
|
|
|
let propertyDescriptor = ReflectGetOwnPropertyDescriptor(object, key);
|
|
|
|
if (!propertyDescriptor) {
|
|
|
|
const prototype = ReflectGetPrototypeOf(object);
|
|
|
|
if (prototype) {
|
|
|
|
propertyDescriptor = getDescendantPropertyDescriptor(prototype, key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return propertyDescriptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getEvaluatedDescriptor(object, key) {
|
|
|
|
return {
|
|
|
|
configurable: true,
|
|
|
|
enumerable: true,
|
|
|
|
value: object[key],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-26 20:27:50 -04:00
|
|
|
// A helper function that will bind our own console implementation
|
|
|
|
// with default implementation of Console from V8. This will cause
|
|
|
|
// console messages to be piped to inspector console.
|
|
|
|
//
|
|
|
|
// We are using `Deno.core.callConsole` binding to preserve proper stack
|
|
|
|
// frames in inspector console. This has to be done because V8 considers
|
|
|
|
// the last JS stack frame as gospel for the inspector. In our case we
|
|
|
|
// specifically want the latest user stack frame to be the one that matters
|
|
|
|
// though.
|
|
|
|
//
|
|
|
|
// Inspired by:
|
|
|
|
// https://github.com/nodejs/node/blob/1317252dfe8824fd9cfee125d2aaa94004db2f3b/lib/internal/util/inspector.js#L39-L61
|
|
|
|
function wrapConsole(consoleFromDeno, consoleFromV8) {
|
|
|
|
const callConsole = core.callConsole;
|
|
|
|
|
2021-07-06 06:03:12 -04:00
|
|
|
for (const key of ObjectKeys(consoleFromV8)) {
|
|
|
|
if (ObjectPrototypeHasOwnProperty(consoleFromDeno, key)) {
|
|
|
|
consoleFromDeno[key] = FunctionPrototypeBind(
|
|
|
|
callConsole,
|
2021-06-26 20:27:50 -04:00
|
|
|
consoleFromDeno,
|
|
|
|
consoleFromV8[key],
|
|
|
|
consoleFromDeno[key],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-19 13:49:44 -04:00
|
|
|
// Expose these fields to internalObject for tests.
|
2021-03-12 15:23:59 -05:00
|
|
|
window.__bootstrap.internals = {
|
|
|
|
...window.__bootstrap.internals ?? {},
|
|
|
|
Console,
|
|
|
|
cssToAnsi,
|
|
|
|
inspectArgs,
|
|
|
|
parseCss,
|
|
|
|
parseCssColor,
|
|
|
|
};
|
2020-07-19 13:49:44 -04:00
|
|
|
|
|
|
|
window.__bootstrap.console = {
|
|
|
|
CSI,
|
|
|
|
inspectArgs,
|
|
|
|
Console,
|
|
|
|
customInspect,
|
|
|
|
inspect,
|
2021-06-26 20:27:50 -04:00
|
|
|
wrapConsole,
|
2021-07-08 09:43:36 -04:00
|
|
|
createFilteredInspectProxy,
|
2020-07-19 13:49:44 -04:00
|
|
|
};
|
|
|
|
})(this);
|