1473 lines
68 KiB
JavaScript
1473 lines
68 KiB
JavaScript
|
(function (factory) {
|
||
|
if (typeof exports === "object" && typeof module === "object") {
|
||
|
module.exports = factory();
|
||
|
} else if (typeof define === "function" && define.amd) {
|
||
|
define(factory);
|
||
|
} else {
|
||
|
var root =
|
||
|
typeof globalThis !== "undefined"
|
||
|
? globalThis
|
||
|
: typeof global !== "undefined"
|
||
|
? global
|
||
|
: typeof self !== "undefined"
|
||
|
? self
|
||
|
: this || {};
|
||
|
root.doc = factory();
|
||
|
}
|
||
|
})(function() {
|
||
|
"use strict";
|
||
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
||
|
var __commonJS = (cb, mod) => function __require() {
|
||
|
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
||
|
};
|
||
|
|
||
|
// dist/_doc.js.umd.js
|
||
|
var require_doc_js_umd = __commonJS({
|
||
|
"dist/_doc.js.umd.js"(exports, module) {
|
||
|
var __create = Object.create;
|
||
|
var __defProp = Object.defineProperty;
|
||
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
||
|
var __getOwnPropNames2 = Object.getOwnPropertyNames;
|
||
|
var __getProtoOf = Object.getPrototypeOf;
|
||
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
||
|
var __esm = (fn, res) => function __init() {
|
||
|
return fn && (res = (0, fn[__getOwnPropNames2(fn)[0]])(fn = 0)), res;
|
||
|
};
|
||
|
var __commonJS2 = (cb, mod) => function __require() {
|
||
|
return mod || (0, cb[__getOwnPropNames2(cb)[0]])((mod = {
|
||
|
exports: {}
|
||
|
}).exports, mod), mod.exports;
|
||
|
};
|
||
|
var __export = (target, all) => {
|
||
|
for (var name in all)
|
||
|
__defProp(target, name, {
|
||
|
get: all[name],
|
||
|
enumerable: true
|
||
|
});
|
||
|
};
|
||
|
var __copyProps = (to, from, except, desc) => {
|
||
|
if (from && typeof from === "object" || typeof from === "function") {
|
||
|
for (let key of __getOwnPropNames2(from))
|
||
|
if (!__hasOwnProp.call(to, key) && key !== except)
|
||
|
__defProp(to, key, {
|
||
|
get: () => from[key],
|
||
|
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
||
|
});
|
||
|
}
|
||
|
return to;
|
||
|
};
|
||
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
||
|
value: mod,
|
||
|
enumerable: true
|
||
|
}) : target, mod));
|
||
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", {
|
||
|
value: true
|
||
|
}), mod);
|
||
|
var init_define_process = __esm({
|
||
|
"<define:process>"() {
|
||
|
}
|
||
|
});
|
||
|
var require_doc_builders = __commonJS2({
|
||
|
"src/document/doc-builders.js"(exports2, module2) {
|
||
|
"use strict";
|
||
|
init_define_process();
|
||
|
function concat(parts) {
|
||
|
if (false) {
|
||
|
for (const part of parts) {
|
||
|
assertDoc(part);
|
||
|
}
|
||
|
}
|
||
|
return {
|
||
|
type: "concat",
|
||
|
parts
|
||
|
};
|
||
|
}
|
||
|
function indent(contents) {
|
||
|
if (false) {
|
||
|
assertDoc(contents);
|
||
|
}
|
||
|
return {
|
||
|
type: "indent",
|
||
|
contents
|
||
|
};
|
||
|
}
|
||
|
function align(widthOrString, contents) {
|
||
|
if (false) {
|
||
|
assertDoc(contents);
|
||
|
}
|
||
|
return {
|
||
|
type: "align",
|
||
|
contents,
|
||
|
n: widthOrString
|
||
|
};
|
||
|
}
|
||
|
function group(contents) {
|
||
|
let opts = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
||
|
if (false) {
|
||
|
assertDoc(contents);
|
||
|
}
|
||
|
return {
|
||
|
type: "group",
|
||
|
id: opts.id,
|
||
|
contents,
|
||
|
break: Boolean(opts.shouldBreak),
|
||
|
expandedStates: opts.expandedStates
|
||
|
};
|
||
|
}
|
||
|
function dedentToRoot(contents) {
|
||
|
return align(Number.NEGATIVE_INFINITY, contents);
|
||
|
}
|
||
|
function markAsRoot(contents) {
|
||
|
return align({
|
||
|
type: "root"
|
||
|
}, contents);
|
||
|
}
|
||
|
function dedent(contents) {
|
||
|
return align(-1, contents);
|
||
|
}
|
||
|
function conditionalGroup(states, opts) {
|
||
|
return group(states[0], Object.assign(Object.assign({}, opts), {}, {
|
||
|
expandedStates: states
|
||
|
}));
|
||
|
}
|
||
|
function fill(parts) {
|
||
|
if (false) {
|
||
|
for (const part of parts) {
|
||
|
assertDoc(part);
|
||
|
}
|
||
|
}
|
||
|
return {
|
||
|
type: "fill",
|
||
|
parts
|
||
|
};
|
||
|
}
|
||
|
function ifBreak(breakContents, flatContents) {
|
||
|
let opts = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {};
|
||
|
if (false) {
|
||
|
if (breakContents) {
|
||
|
assertDoc(breakContents);
|
||
|
}
|
||
|
if (flatContents) {
|
||
|
assertDoc(flatContents);
|
||
|
}
|
||
|
}
|
||
|
return {
|
||
|
type: "if-break",
|
||
|
breakContents,
|
||
|
flatContents,
|
||
|
groupId: opts.groupId
|
||
|
};
|
||
|
}
|
||
|
function indentIfBreak(contents, opts) {
|
||
|
return {
|
||
|
type: "indent-if-break",
|
||
|
contents,
|
||
|
groupId: opts.groupId,
|
||
|
negate: opts.negate
|
||
|
};
|
||
|
}
|
||
|
function lineSuffix(contents) {
|
||
|
if (false) {
|
||
|
assertDoc(contents);
|
||
|
}
|
||
|
return {
|
||
|
type: "line-suffix",
|
||
|
contents
|
||
|
};
|
||
|
}
|
||
|
var lineSuffixBoundary = {
|
||
|
type: "line-suffix-boundary"
|
||
|
};
|
||
|
var breakParent = {
|
||
|
type: "break-parent"
|
||
|
};
|
||
|
var trim = {
|
||
|
type: "trim"
|
||
|
};
|
||
|
var hardlineWithoutBreakParent = {
|
||
|
type: "line",
|
||
|
hard: true
|
||
|
};
|
||
|
var literallineWithoutBreakParent = {
|
||
|
type: "line",
|
||
|
hard: true,
|
||
|
literal: true
|
||
|
};
|
||
|
var line = {
|
||
|
type: "line"
|
||
|
};
|
||
|
var softline = {
|
||
|
type: "line",
|
||
|
soft: true
|
||
|
};
|
||
|
var hardline = concat([hardlineWithoutBreakParent, breakParent]);
|
||
|
var literalline = concat([literallineWithoutBreakParent, breakParent]);
|
||
|
var cursor = {
|
||
|
type: "cursor",
|
||
|
placeholder: Symbol("cursor")
|
||
|
};
|
||
|
function join(sep, arr) {
|
||
|
const res = [];
|
||
|
for (let i = 0; i < arr.length; i++) {
|
||
|
if (i !== 0) {
|
||
|
res.push(sep);
|
||
|
}
|
||
|
res.push(arr[i]);
|
||
|
}
|
||
|
return concat(res);
|
||
|
}
|
||
|
function addAlignmentToDoc(doc, size, tabWidth) {
|
||
|
let aligned = doc;
|
||
|
if (size > 0) {
|
||
|
for (let i = 0; i < Math.floor(size / tabWidth); ++i) {
|
||
|
aligned = indent(aligned);
|
||
|
}
|
||
|
aligned = align(size % tabWidth, aligned);
|
||
|
aligned = align(Number.NEGATIVE_INFINITY, aligned);
|
||
|
}
|
||
|
return aligned;
|
||
|
}
|
||
|
function label(label2, contents) {
|
||
|
return {
|
||
|
type: "label",
|
||
|
label: label2,
|
||
|
contents
|
||
|
};
|
||
|
}
|
||
|
module2.exports = {
|
||
|
concat,
|
||
|
join,
|
||
|
line,
|
||
|
softline,
|
||
|
hardline,
|
||
|
literalline,
|
||
|
group,
|
||
|
conditionalGroup,
|
||
|
fill,
|
||
|
lineSuffix,
|
||
|
lineSuffixBoundary,
|
||
|
cursor,
|
||
|
breakParent,
|
||
|
ifBreak,
|
||
|
trim,
|
||
|
indent,
|
||
|
indentIfBreak,
|
||
|
align,
|
||
|
addAlignmentToDoc,
|
||
|
markAsRoot,
|
||
|
dedentToRoot,
|
||
|
dedent,
|
||
|
hardlineWithoutBreakParent,
|
||
|
literallineWithoutBreakParent,
|
||
|
label
|
||
|
};
|
||
|
}
|
||
|
});
|
||
|
var require_end_of_line = __commonJS2({
|
||
|
"src/common/end-of-line.js"(exports2, module2) {
|
||
|
"use strict";
|
||
|
init_define_process();
|
||
|
function guessEndOfLine(text) {
|
||
|
const index = text.indexOf("\r");
|
||
|
if (index >= 0) {
|
||
|
return text.charAt(index + 1) === "\n" ? "crlf" : "cr";
|
||
|
}
|
||
|
return "lf";
|
||
|
}
|
||
|
function convertEndOfLineToChars(value) {
|
||
|
switch (value) {
|
||
|
case "cr":
|
||
|
return "\r";
|
||
|
case "crlf":
|
||
|
return "\r\n";
|
||
|
default:
|
||
|
return "\n";
|
||
|
}
|
||
|
}
|
||
|
function countEndOfLineChars(text, eol) {
|
||
|
let regex;
|
||
|
switch (eol) {
|
||
|
case "\n":
|
||
|
regex = /\n/g;
|
||
|
break;
|
||
|
case "\r":
|
||
|
regex = /\r/g;
|
||
|
break;
|
||
|
case "\r\n":
|
||
|
regex = /\r\n/g;
|
||
|
break;
|
||
|
default:
|
||
|
throw new Error(`Unexpected "eol" ${JSON.stringify(eol)}.`);
|
||
|
}
|
||
|
const endOfLines = text.match(regex);
|
||
|
return endOfLines ? endOfLines.length : 0;
|
||
|
}
|
||
|
function normalizeEndOfLine(text) {
|
||
|
return text.replace(/\r\n?/g, "\n");
|
||
|
}
|
||
|
module2.exports = {
|
||
|
guessEndOfLine,
|
||
|
convertEndOfLineToChars,
|
||
|
countEndOfLineChars,
|
||
|
normalizeEndOfLine
|
||
|
};
|
||
|
}
|
||
|
});
|
||
|
var require_get_last = __commonJS2({
|
||
|
"src/utils/get-last.js"(exports2, module2) {
|
||
|
"use strict";
|
||
|
init_define_process();
|
||
|
var getLast = (arr) => arr[arr.length - 1];
|
||
|
module2.exports = getLast;
|
||
|
}
|
||
|
});
|
||
|
function ansiRegex() {
|
||
|
let {
|
||
|
onlyFirst = false
|
||
|
} = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
|
||
|
const pattern = ["[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)", "(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))"].join("|");
|
||
|
return new RegExp(pattern, onlyFirst ? void 0 : "g");
|
||
|
}
|
||
|
var init_ansi_regex = __esm({
|
||
|
"node_modules/strip-ansi/node_modules/ansi-regex/index.js"() {
|
||
|
init_define_process();
|
||
|
}
|
||
|
});
|
||
|
function stripAnsi(string) {
|
||
|
if (typeof string !== "string") {
|
||
|
throw new TypeError(`Expected a \`string\`, got \`${typeof string}\``);
|
||
|
}
|
||
|
return string.replace(ansiRegex(), "");
|
||
|
}
|
||
|
var init_strip_ansi = __esm({
|
||
|
"node_modules/strip-ansi/index.js"() {
|
||
|
init_define_process();
|
||
|
init_ansi_regex();
|
||
|
}
|
||
|
});
|
||
|
function isFullwidthCodePoint(codePoint) {
|
||
|
if (!Number.isInteger(codePoint)) {
|
||
|
return false;
|
||
|
}
|
||
|
return codePoint >= 4352 && (codePoint <= 4447 || codePoint === 9001 || codePoint === 9002 || 11904 <= codePoint && codePoint <= 12871 && codePoint !== 12351 || 12880 <= codePoint && codePoint <= 19903 || 19968 <= codePoint && codePoint <= 42182 || 43360 <= codePoint && codePoint <= 43388 || 44032 <= codePoint && codePoint <= 55203 || 63744 <= codePoint && codePoint <= 64255 || 65040 <= codePoint && codePoint <= 65049 || 65072 <= codePoint && codePoint <= 65131 || 65281 <= codePoint && codePoint <= 65376 || 65504 <= codePoint && codePoint <= 65510 || 110592 <= codePoint && codePoint <= 110593 || 127488 <= codePoint && codePoint <= 127569 || 131072 <= codePoint && codePoint <= 262141);
|
||
|
}
|
||
|
var init_is_fullwidth_code_point = __esm({
|
||
|
"node_modules/is-fullwidth-code-point/index.js"() {
|
||
|
init_define_process();
|
||
|
}
|
||
|
});
|
||
|
var require_emoji_regex = __commonJS2({
|
||
|
"node_modules/emoji-regex/index.js"(exports2, module2) {
|
||
|
"use strict";
|
||
|
init_define_process();
|
||
|
module2.exports = function() {
|
||
|
return /\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62(?:\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73|\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74|\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67)\uDB40\uDC7F|(?:\uD83E\uDDD1\uD83C\uDFFF\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFE])|(?:\uD83E\uDDD1\uD83C\uDFFE\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFD\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFC\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFB\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFB\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFC-\uDFFF])|\uD83D\uDC68(?:\uD83C\uDFFB(?:\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF]))|\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFC-\uDFFF])|[\u2695\u2696\u2708]\uFE0F|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))?|(?:\uD83C[\uDFFC-\uDFFF])\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF]))|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83D\uDC68|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFE])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])\uFE0F|\u200D(?:(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D[\uDC66\uDC67])|\uD83D[\uDC66\uDC67])|\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC)?|(?:\uD83D\uDC69(?:\uD83C\uDFFB\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|(?:\uD83C[\uDFFC-\uDFFF])\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69]))|\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1)(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC69(?:\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uD
|
||
|
};
|
||
|
}
|
||
|
});
|
||
|
var string_width_exports = {};
|
||
|
__export(string_width_exports, {
|
||
|
default: () => stringWidth
|
||
|
});
|
||
|
function stringWidth(string) {
|
||
|
if (typeof string !== "string" || string.length === 0) {
|
||
|
return 0;
|
||
|
}
|
||
|
string = stripAnsi(string);
|
||
|
if (string.length === 0) {
|
||
|
return 0;
|
||
|
}
|
||
|
string = string.replace((0, import_emoji_regex.default)(), " ");
|
||
|
let width = 0;
|
||
|
for (let index = 0; index < string.length; index++) {
|
||
|
const codePoint = string.codePointAt(index);
|
||
|
if (codePoint <= 31 || codePoint >= 127 && codePoint <= 159) {
|
||
|
continue;
|
||
|
}
|
||
|
if (codePoint >= 768 && codePoint <= 879) {
|
||
|
continue;
|
||
|
}
|
||
|
if (codePoint > 65535) {
|
||
|
index++;
|
||
|
}
|
||
|
width += isFullwidthCodePoint(codePoint) ? 2 : 1;
|
||
|
}
|
||
|
return width;
|
||
|
}
|
||
|
var import_emoji_regex;
|
||
|
var init_string_width = __esm({
|
||
|
"node_modules/string-width/index.js"() {
|
||
|
init_define_process();
|
||
|
init_strip_ansi();
|
||
|
init_is_fullwidth_code_point();
|
||
|
import_emoji_regex = __toESM(require_emoji_regex());
|
||
|
}
|
||
|
});
|
||
|
var require_get_string_width = __commonJS2({
|
||
|
"src/utils/get-string-width.js"(exports2, module2) {
|
||
|
"use strict";
|
||
|
init_define_process();
|
||
|
var stringWidth2 = (init_string_width(), __toCommonJS(string_width_exports)).default;
|
||
|
var notAsciiRegex = /[^\x20-\x7F]/;
|
||
|
function getStringWidth(text) {
|
||
|
if (!text) {
|
||
|
return 0;
|
||
|
}
|
||
|
if (!notAsciiRegex.test(text)) {
|
||
|
return text.length;
|
||
|
}
|
||
|
return stringWidth2(text);
|
||
|
}
|
||
|
module2.exports = getStringWidth;
|
||
|
}
|
||
|
});
|
||
|
var require_doc_utils = __commonJS2({
|
||
|
"src/document/doc-utils.js"(exports2, module2) {
|
||
|
"use strict";
|
||
|
init_define_process();
|
||
|
var getLast = require_get_last();
|
||
|
var {
|
||
|
literalline,
|
||
|
join
|
||
|
} = require_doc_builders();
|
||
|
var isConcat = (doc) => Array.isArray(doc) || doc && doc.type === "concat";
|
||
|
var getDocParts = (doc) => {
|
||
|
if (Array.isArray(doc)) {
|
||
|
return doc;
|
||
|
}
|
||
|
if (doc.type !== "concat" && doc.type !== "fill") {
|
||
|
throw new Error("Expect doc type to be `concat` or `fill`.");
|
||
|
}
|
||
|
return doc.parts;
|
||
|
};
|
||
|
var traverseDocOnExitStackMarker = {};
|
||
|
function traverseDoc(doc, onEnter, onExit, shouldTraverseConditionalGroups) {
|
||
|
const docsStack = [doc];
|
||
|
while (docsStack.length > 0) {
|
||
|
const doc2 = docsStack.pop();
|
||
|
if (doc2 === traverseDocOnExitStackMarker) {
|
||
|
onExit(docsStack.pop());
|
||
|
continue;
|
||
|
}
|
||
|
if (onExit) {
|
||
|
docsStack.push(doc2, traverseDocOnExitStackMarker);
|
||
|
}
|
||
|
if (!onEnter || onEnter(doc2) !== false) {
|
||
|
if (isConcat(doc2) || doc2.type === "fill") {
|
||
|
const parts = getDocParts(doc2);
|
||
|
for (let ic = parts.length, i = ic - 1; i >= 0; --i) {
|
||
|
docsStack.push(parts[i]);
|
||
|
}
|
||
|
} else if (doc2.type === "if-break") {
|
||
|
if (doc2.flatContents) {
|
||
|
docsStack.push(doc2.flatContents);
|
||
|
}
|
||
|
if (doc2.breakContents) {
|
||
|
docsStack.push(doc2.breakContents);
|
||
|
}
|
||
|
} else if (doc2.type === "group" && doc2.expandedStates) {
|
||
|
if (shouldTraverseConditionalGroups) {
|
||
|
for (let ic = doc2.expandedStates.length, i = ic - 1; i >= 0; --i) {
|
||
|
docsStack.push(doc2.expandedStates[i]);
|
||
|
}
|
||
|
} else {
|
||
|
docsStack.push(doc2.contents);
|
||
|
}
|
||
|
} else if (doc2.contents) {
|
||
|
docsStack.push(doc2.contents);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
function mapDoc(doc, cb) {
|
||
|
const mapped = /* @__PURE__ */ new Map();
|
||
|
return rec(doc);
|
||
|
function rec(doc2) {
|
||
|
if (mapped.has(doc2)) {
|
||
|
return mapped.get(doc2);
|
||
|
}
|
||
|
const result = process2(doc2);
|
||
|
mapped.set(doc2, result);
|
||
|
return result;
|
||
|
}
|
||
|
function process2(doc2) {
|
||
|
if (Array.isArray(doc2)) {
|
||
|
return cb(doc2.map(rec));
|
||
|
}
|
||
|
if (doc2.type === "concat" || doc2.type === "fill") {
|
||
|
const parts = doc2.parts.map(rec);
|
||
|
return cb(Object.assign(Object.assign({}, doc2), {}, {
|
||
|
parts
|
||
|
}));
|
||
|
}
|
||
|
if (doc2.type === "if-break") {
|
||
|
const breakContents = doc2.breakContents && rec(doc2.breakContents);
|
||
|
const flatContents = doc2.flatContents && rec(doc2.flatContents);
|
||
|
return cb(Object.assign(Object.assign({}, doc2), {}, {
|
||
|
breakContents,
|
||
|
flatContents
|
||
|
}));
|
||
|
}
|
||
|
if (doc2.type === "group" && doc2.expandedStates) {
|
||
|
const expandedStates = doc2.expandedStates.map(rec);
|
||
|
const contents = expandedStates[0];
|
||
|
return cb(Object.assign(Object.assign({}, doc2), {}, {
|
||
|
contents,
|
||
|
expandedStates
|
||
|
}));
|
||
|
}
|
||
|
if (doc2.contents) {
|
||
|
const contents = rec(doc2.contents);
|
||
|
return cb(Object.assign(Object.assign({}, doc2), {}, {
|
||
|
contents
|
||
|
}));
|
||
|
}
|
||
|
return cb(doc2);
|
||
|
}
|
||
|
}
|
||
|
function findInDoc(doc, fn, defaultValue) {
|
||
|
let result = defaultValue;
|
||
|
let hasStopped = false;
|
||
|
function findInDocOnEnterFn(doc2) {
|
||
|
const maybeResult = fn(doc2);
|
||
|
if (maybeResult !== void 0) {
|
||
|
hasStopped = true;
|
||
|
result = maybeResult;
|
||
|
}
|
||
|
if (hasStopped) {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
traverseDoc(doc, findInDocOnEnterFn);
|
||
|
return result;
|
||
|
}
|
||
|
function willBreakFn(doc) {
|
||
|
if (doc.type === "group" && doc.break) {
|
||
|
return true;
|
||
|
}
|
||
|
if (doc.type === "line" && doc.hard) {
|
||
|
return true;
|
||
|
}
|
||
|
if (doc.type === "break-parent") {
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
function willBreak(doc) {
|
||
|
return findInDoc(doc, willBreakFn, false);
|
||
|
}
|
||
|
function breakParentGroup(groupStack) {
|
||
|
if (groupStack.length > 0) {
|
||
|
const parentGroup = getLast(groupStack);
|
||
|
if (!parentGroup.expandedStates && !parentGroup.break) {
|
||
|
parentGroup.break = "propagated";
|
||
|
}
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
function propagateBreaks(doc) {
|
||
|
const alreadyVisitedSet = /* @__PURE__ */ new Set();
|
||
|
const groupStack = [];
|
||
|
function propagateBreaksOnEnterFn(doc2) {
|
||
|
if (doc2.type === "break-parent") {
|
||
|
breakParentGroup(groupStack);
|
||
|
}
|
||
|
if (doc2.type === "group") {
|
||
|
groupStack.push(doc2);
|
||
|
if (alreadyVisitedSet.has(doc2)) {
|
||
|
return false;
|
||
|
}
|
||
|
alreadyVisitedSet.add(doc2);
|
||
|
}
|
||
|
}
|
||
|
function propagateBreaksOnExitFn(doc2) {
|
||
|
if (doc2.type === "group") {
|
||
|
const group = groupStack.pop();
|
||
|
if (group.break) {
|
||
|
breakParentGroup(groupStack);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
traverseDoc(doc, propagateBreaksOnEnterFn, propagateBreaksOnExitFn, true);
|
||
|
}
|
||
|
function removeLinesFn(doc) {
|
||
|
if (doc.type === "line" && !doc.hard) {
|
||
|
return doc.soft ? "" : " ";
|
||
|
}
|
||
|
if (doc.type === "if-break") {
|
||
|
return doc.flatContents || "";
|
||
|
}
|
||
|
return doc;
|
||
|
}
|
||
|
function removeLines(doc) {
|
||
|
return mapDoc(doc, removeLinesFn);
|
||
|
}
|
||
|
var isHardline = (doc, nextDoc) => doc && doc.type === "line" && doc.hard && nextDoc && nextDoc.type === "break-parent";
|
||
|
function stripDocTrailingHardlineFromDoc(doc) {
|
||
|
if (!doc) {
|
||
|
return doc;
|
||
|
}
|
||
|
if (isConcat(doc) || doc.type === "fill") {
|
||
|
const parts = getDocParts(doc);
|
||
|
while (parts.length > 1 && isHardline(...parts.slice(-2))) {
|
||
|
parts.length -= 2;
|
||
|
}
|
||
|
if (parts.length > 0) {
|
||
|
const lastPart = stripDocTrailingHardlineFromDoc(getLast(parts));
|
||
|
parts[parts.length - 1] = lastPart;
|
||
|
}
|
||
|
return Array.isArray(doc) ? parts : Object.assign(Object.assign({}, doc), {}, {
|
||
|
parts
|
||
|
});
|
||
|
}
|
||
|
switch (doc.type) {
|
||
|
case "align":
|
||
|
case "indent":
|
||
|
case "indent-if-break":
|
||
|
case "group":
|
||
|
case "line-suffix":
|
||
|
case "label": {
|
||
|
const contents = stripDocTrailingHardlineFromDoc(doc.contents);
|
||
|
return Object.assign(Object.assign({}, doc), {}, {
|
||
|
contents
|
||
|
});
|
||
|
}
|
||
|
case "if-break": {
|
||
|
const breakContents = stripDocTrailingHardlineFromDoc(doc.breakContents);
|
||
|
const flatContents = stripDocTrailingHardlineFromDoc(doc.flatContents);
|
||
|
return Object.assign(Object.assign({}, doc), {}, {
|
||
|
breakContents,
|
||
|
flatContents
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
return doc;
|
||
|
}
|
||
|
function stripTrailingHardline(doc) {
|
||
|
return stripDocTrailingHardlineFromDoc(cleanDoc(doc));
|
||
|
}
|
||
|
function cleanDocFn(doc) {
|
||
|
switch (doc.type) {
|
||
|
case "fill":
|
||
|
if (doc.parts.every((part) => part === "")) {
|
||
|
return "";
|
||
|
}
|
||
|
break;
|
||
|
case "group":
|
||
|
if (!doc.contents && !doc.id && !doc.break && !doc.expandedStates) {
|
||
|
return "";
|
||
|
}
|
||
|
if (doc.contents.type === "group" && doc.contents.id === doc.id && doc.contents.break === doc.break && doc.contents.expandedStates === doc.expandedStates) {
|
||
|
return doc.contents;
|
||
|
}
|
||
|
break;
|
||
|
case "align":
|
||
|
case "indent":
|
||
|
case "indent-if-break":
|
||
|
case "line-suffix":
|
||
|
if (!doc.contents) {
|
||
|
return "";
|
||
|
}
|
||
|
break;
|
||
|
case "if-break":
|
||
|
if (!doc.flatContents && !doc.breakContents) {
|
||
|
return "";
|
||
|
}
|
||
|
break;
|
||
|
}
|
||
|
if (!isConcat(doc)) {
|
||
|
return doc;
|
||
|
}
|
||
|
const parts = [];
|
||
|
for (const part of getDocParts(doc)) {
|
||
|
if (!part) {
|
||
|
continue;
|
||
|
}
|
||
|
const [currentPart, ...restParts] = isConcat(part) ? getDocParts(part) : [part];
|
||
|
if (typeof currentPart === "string" && typeof getLast(parts) === "string") {
|
||
|
parts[parts.length - 1] += currentPart;
|
||
|
} else {
|
||
|
parts.push(currentPart);
|
||
|
}
|
||
|
parts.push(...restParts);
|
||
|
}
|
||
|
if (parts.length === 0) {
|
||
|
return "";
|
||
|
}
|
||
|
if (parts.length === 1) {
|
||
|
return parts[0];
|
||
|
}
|
||
|
return Array.isArray(doc) ? parts : Object.assign(Object.assign({}, doc), {}, {
|
||
|
parts
|
||
|
});
|
||
|
}
|
||
|
function cleanDoc(doc) {
|
||
|
return mapDoc(doc, (currentDoc) => cleanDocFn(currentDoc));
|
||
|
}
|
||
|
function normalizeParts(parts) {
|
||
|
const newParts = [];
|
||
|
const restParts = parts.filter(Boolean);
|
||
|
while (restParts.length > 0) {
|
||
|
const part = restParts.shift();
|
||
|
if (!part) {
|
||
|
continue;
|
||
|
}
|
||
|
if (isConcat(part)) {
|
||
|
restParts.unshift(...getDocParts(part));
|
||
|
continue;
|
||
|
}
|
||
|
if (newParts.length > 0 && typeof getLast(newParts) === "string" && typeof part === "string") {
|
||
|
newParts[newParts.length - 1] += part;
|
||
|
continue;
|
||
|
}
|
||
|
newParts.push(part);
|
||
|
}
|
||
|
return newParts;
|
||
|
}
|
||
|
function normalizeDoc(doc) {
|
||
|
return mapDoc(doc, (currentDoc) => {
|
||
|
if (Array.isArray(currentDoc)) {
|
||
|
return normalizeParts(currentDoc);
|
||
|
}
|
||
|
if (!currentDoc.parts) {
|
||
|
return currentDoc;
|
||
|
}
|
||
|
return Object.assign(Object.assign({}, currentDoc), {}, {
|
||
|
parts: normalizeParts(currentDoc.parts)
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
function replaceEndOfLine(doc) {
|
||
|
return mapDoc(doc, (currentDoc) => typeof currentDoc === "string" && currentDoc.includes("\n") ? replaceTextEndOfLine(currentDoc) : currentDoc);
|
||
|
}
|
||
|
function replaceTextEndOfLine(text) {
|
||
|
let replacement = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : literalline;
|
||
|
return join(replacement, text.split("\n")).parts;
|
||
|
}
|
||
|
function canBreakFn(doc) {
|
||
|
if (doc.type === "line") {
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
function canBreak(doc) {
|
||
|
return findInDoc(doc, canBreakFn, false);
|
||
|
}
|
||
|
module2.exports = {
|
||
|
isConcat,
|
||
|
getDocParts,
|
||
|
willBreak,
|
||
|
traverseDoc,
|
||
|
findInDoc,
|
||
|
mapDoc,
|
||
|
propagateBreaks,
|
||
|
removeLines,
|
||
|
stripTrailingHardline,
|
||
|
normalizeParts,
|
||
|
normalizeDoc,
|
||
|
cleanDoc,
|
||
|
replaceTextEndOfLine,
|
||
|
replaceEndOfLine,
|
||
|
canBreak
|
||
|
};
|
||
|
}
|
||
|
});
|
||
|
var require_doc_printer = __commonJS2({
|
||
|
"src/document/doc-printer.js"(exports2, module2) {
|
||
|
"use strict";
|
||
|
init_define_process();
|
||
|
var {
|
||
|
convertEndOfLineToChars
|
||
|
} = require_end_of_line();
|
||
|
var getLast = require_get_last();
|
||
|
var getStringWidth = require_get_string_width();
|
||
|
var {
|
||
|
fill,
|
||
|
cursor,
|
||
|
indent
|
||
|
} = require_doc_builders();
|
||
|
var {
|
||
|
isConcat,
|
||
|
getDocParts
|
||
|
} = require_doc_utils();
|
||
|
var groupModeMap;
|
||
|
var MODE_BREAK = 1;
|
||
|
var MODE_FLAT = 2;
|
||
|
function rootIndent() {
|
||
|
return {
|
||
|
value: "",
|
||
|
length: 0,
|
||
|
queue: []
|
||
|
};
|
||
|
}
|
||
|
function makeIndent(ind, options) {
|
||
|
return generateInd(ind, {
|
||
|
type: "indent"
|
||
|
}, options);
|
||
|
}
|
||
|
function makeAlign(indent2, widthOrDoc, options) {
|
||
|
if (widthOrDoc === Number.NEGATIVE_INFINITY) {
|
||
|
return indent2.root || rootIndent();
|
||
|
}
|
||
|
if (widthOrDoc < 0) {
|
||
|
return generateInd(indent2, {
|
||
|
type: "dedent"
|
||
|
}, options);
|
||
|
}
|
||
|
if (!widthOrDoc) {
|
||
|
return indent2;
|
||
|
}
|
||
|
if (widthOrDoc.type === "root") {
|
||
|
return Object.assign(Object.assign({}, indent2), {}, {
|
||
|
root: indent2
|
||
|
});
|
||
|
}
|
||
|
const alignType = typeof widthOrDoc === "string" ? "stringAlign" : "numberAlign";
|
||
|
return generateInd(indent2, {
|
||
|
type: alignType,
|
||
|
n: widthOrDoc
|
||
|
}, options);
|
||
|
}
|
||
|
function generateInd(ind, newPart, options) {
|
||
|
const queue = newPart.type === "dedent" ? ind.queue.slice(0, -1) : [...ind.queue, newPart];
|
||
|
let value = "";
|
||
|
let length = 0;
|
||
|
let lastTabs = 0;
|
||
|
let lastSpaces = 0;
|
||
|
for (const part of queue) {
|
||
|
switch (part.type) {
|
||
|
case "indent":
|
||
|
flush();
|
||
|
if (options.useTabs) {
|
||
|
addTabs(1);
|
||
|
} else {
|
||
|
addSpaces(options.tabWidth);
|
||
|
}
|
||
|
break;
|
||
|
case "stringAlign":
|
||
|
flush();
|
||
|
value += part.n;
|
||
|
length += part.n.length;
|
||
|
break;
|
||
|
case "numberAlign":
|
||
|
lastTabs += 1;
|
||
|
lastSpaces += part.n;
|
||
|
break;
|
||
|
default:
|
||
|
throw new Error(`Unexpected type '${part.type}'`);
|
||
|
}
|
||
|
}
|
||
|
flushSpaces();
|
||
|
return Object.assign(Object.assign({}, ind), {}, {
|
||
|
value,
|
||
|
length,
|
||
|
queue
|
||
|
});
|
||
|
function addTabs(count) {
|
||
|
value += " ".repeat(count);
|
||
|
length += options.tabWidth * count;
|
||
|
}
|
||
|
function addSpaces(count) {
|
||
|
value += " ".repeat(count);
|
||
|
length += count;
|
||
|
}
|
||
|
function flush() {
|
||
|
if (options.useTabs) {
|
||
|
flushTabs();
|
||
|
} else {
|
||
|
flushSpaces();
|
||
|
}
|
||
|
}
|
||
|
function flushTabs() {
|
||
|
if (lastTabs > 0) {
|
||
|
addTabs(lastTabs);
|
||
|
}
|
||
|
resetLast();
|
||
|
}
|
||
|
function flushSpaces() {
|
||
|
if (lastSpaces > 0) {
|
||
|
addSpaces(lastSpaces);
|
||
|
}
|
||
|
resetLast();
|
||
|
}
|
||
|
function resetLast() {
|
||
|
lastTabs = 0;
|
||
|
lastSpaces = 0;
|
||
|
}
|
||
|
}
|
||
|
function trim(out) {
|
||
|
if (out.length === 0) {
|
||
|
return 0;
|
||
|
}
|
||
|
let trimCount = 0;
|
||
|
while (out.length > 0 && typeof getLast(out) === "string" && /^[\t ]*$/.test(getLast(out))) {
|
||
|
trimCount += out.pop().length;
|
||
|
}
|
||
|
if (out.length > 0 && typeof getLast(out) === "string") {
|
||
|
const trimmed = getLast(out).replace(/[\t ]*$/, "");
|
||
|
trimCount += getLast(out).length - trimmed.length;
|
||
|
out[out.length - 1] = trimmed;
|
||
|
}
|
||
|
return trimCount;
|
||
|
}
|
||
|
function fits(next, restCommands, width, hasLineSuffix, mustBeFlat) {
|
||
|
let restIdx = restCommands.length;
|
||
|
const cmds = [next];
|
||
|
const out = [];
|
||
|
while (width >= 0) {
|
||
|
if (cmds.length === 0) {
|
||
|
if (restIdx === 0) {
|
||
|
return true;
|
||
|
}
|
||
|
cmds.push(restCommands[--restIdx]);
|
||
|
continue;
|
||
|
}
|
||
|
const {
|
||
|
mode,
|
||
|
doc
|
||
|
} = cmds.pop();
|
||
|
if (typeof doc === "string") {
|
||
|
out.push(doc);
|
||
|
width -= getStringWidth(doc);
|
||
|
} else if (isConcat(doc) || doc.type === "fill") {
|
||
|
const parts = getDocParts(doc);
|
||
|
for (let i = parts.length - 1; i >= 0; i--) {
|
||
|
cmds.push({
|
||
|
mode,
|
||
|
doc: parts[i]
|
||
|
});
|
||
|
}
|
||
|
} else {
|
||
|
switch (doc.type) {
|
||
|
case "indent":
|
||
|
case "align":
|
||
|
case "indent-if-break":
|
||
|
case "label":
|
||
|
cmds.push({
|
||
|
mode,
|
||
|
doc: doc.contents
|
||
|
});
|
||
|
break;
|
||
|
case "trim":
|
||
|
width += trim(out);
|
||
|
break;
|
||
|
case "group": {
|
||
|
if (mustBeFlat && doc.break) {
|
||
|
return false;
|
||
|
}
|
||
|
const groupMode = doc.break ? MODE_BREAK : mode;
|
||
|
const contents = doc.expandedStates && groupMode === MODE_BREAK ? getLast(doc.expandedStates) : doc.contents;
|
||
|
cmds.push({
|
||
|
mode: groupMode,
|
||
|
doc: contents
|
||
|
});
|
||
|
break;
|
||
|
}
|
||
|
case "if-break": {
|
||
|
const groupMode = doc.groupId ? groupModeMap[doc.groupId] || MODE_FLAT : mode;
|
||
|
const contents = groupMode === MODE_BREAK ? doc.breakContents : doc.flatContents;
|
||
|
if (contents) {
|
||
|
cmds.push({
|
||
|
mode,
|
||
|
doc: contents
|
||
|
});
|
||
|
}
|
||
|
break;
|
||
|
}
|
||
|
case "line":
|
||
|
if (mode === MODE_BREAK || doc.hard) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!doc.soft) {
|
||
|
out.push(" ");
|
||
|
width--;
|
||
|
}
|
||
|
break;
|
||
|
case "line-suffix":
|
||
|
hasLineSuffix = true;
|
||
|
break;
|
||
|
case "line-suffix-boundary":
|
||
|
if (hasLineSuffix) {
|
||
|
return false;
|
||
|
}
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
function printDocToString(doc, options) {
|
||
|
groupModeMap = {};
|
||
|
const width = options.printWidth;
|
||
|
const newLine = convertEndOfLineToChars(options.endOfLine);
|
||
|
let pos = 0;
|
||
|
const cmds = [{
|
||
|
ind: rootIndent(),
|
||
|
mode: MODE_BREAK,
|
||
|
doc
|
||
|
}];
|
||
|
const out = [];
|
||
|
let shouldRemeasure = false;
|
||
|
const lineSuffix = [];
|
||
|
while (cmds.length > 0) {
|
||
|
const {
|
||
|
ind,
|
||
|
mode,
|
||
|
doc: doc2
|
||
|
} = cmds.pop();
|
||
|
if (typeof doc2 === "string") {
|
||
|
const formatted = newLine !== "\n" ? doc2.replace(/\n/g, newLine) : doc2;
|
||
|
out.push(formatted);
|
||
|
pos += getStringWidth(formatted);
|
||
|
} else if (isConcat(doc2)) {
|
||
|
const parts = getDocParts(doc2);
|
||
|
for (let i = parts.length - 1; i >= 0; i--) {
|
||
|
cmds.push({
|
||
|
ind,
|
||
|
mode,
|
||
|
doc: parts[i]
|
||
|
});
|
||
|
}
|
||
|
} else {
|
||
|
switch (doc2.type) {
|
||
|
case "cursor":
|
||
|
out.push(cursor.placeholder);
|
||
|
break;
|
||
|
case "indent":
|
||
|
cmds.push({
|
||
|
ind: makeIndent(ind, options),
|
||
|
mode,
|
||
|
doc: doc2.contents
|
||
|
});
|
||
|
break;
|
||
|
case "align":
|
||
|
cmds.push({
|
||
|
ind: makeAlign(ind, doc2.n, options),
|
||
|
mode,
|
||
|
doc: doc2.contents
|
||
|
});
|
||
|
break;
|
||
|
case "trim":
|
||
|
pos -= trim(out);
|
||
|
break;
|
||
|
case "group":
|
||
|
switch (mode) {
|
||
|
case MODE_FLAT:
|
||
|
if (!shouldRemeasure) {
|
||
|
cmds.push({
|
||
|
ind,
|
||
|
mode: doc2.break ? MODE_BREAK : MODE_FLAT,
|
||
|
doc: doc2.contents
|
||
|
});
|
||
|
break;
|
||
|
}
|
||
|
case MODE_BREAK: {
|
||
|
shouldRemeasure = false;
|
||
|
const next = {
|
||
|
ind,
|
||
|
mode: MODE_FLAT,
|
||
|
doc: doc2.contents
|
||
|
};
|
||
|
const rem = width - pos;
|
||
|
const hasLineSuffix = lineSuffix.length > 0;
|
||
|
if (!doc2.break && fits(next, cmds, rem, hasLineSuffix)) {
|
||
|
cmds.push(next);
|
||
|
} else {
|
||
|
if (doc2.expandedStates) {
|
||
|
const mostExpanded = getLast(doc2.expandedStates);
|
||
|
if (doc2.break) {
|
||
|
cmds.push({
|
||
|
ind,
|
||
|
mode: MODE_BREAK,
|
||
|
doc: mostExpanded
|
||
|
});
|
||
|
break;
|
||
|
} else {
|
||
|
for (let i = 1; i < doc2.expandedStates.length + 1; i++) {
|
||
|
if (i >= doc2.expandedStates.length) {
|
||
|
cmds.push({
|
||
|
ind,
|
||
|
mode: MODE_BREAK,
|
||
|
doc: mostExpanded
|
||
|
});
|
||
|
break;
|
||
|
} else {
|
||
|
const state = doc2.expandedStates[i];
|
||
|
const cmd = {
|
||
|
ind,
|
||
|
mode: MODE_FLAT,
|
||
|
doc: state
|
||
|
};
|
||
|
if (fits(cmd, cmds, rem, hasLineSuffix)) {
|
||
|
cmds.push(cmd);
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
} else {
|
||
|
cmds.push({
|
||
|
ind,
|
||
|
mode: MODE_BREAK,
|
||
|
doc: doc2.contents
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
if (doc2.id) {
|
||
|
groupModeMap[doc2.id] = getLast(cmds).mode;
|
||
|
}
|
||
|
break;
|
||
|
case "fill": {
|
||
|
const rem = width - pos;
|
||
|
const {
|
||
|
parts
|
||
|
} = doc2;
|
||
|
if (parts.length === 0) {
|
||
|
break;
|
||
|
}
|
||
|
const [content, whitespace] = parts;
|
||
|
const contentFlatCmd = {
|
||
|
ind,
|
||
|
mode: MODE_FLAT,
|
||
|
doc: content
|
||
|
};
|
||
|
const contentBreakCmd = {
|
||
|
ind,
|
||
|
mode: MODE_BREAK,
|
||
|
doc: content
|
||
|
};
|
||
|
const contentFits = fits(contentFlatCmd, [], rem, lineSuffix.length > 0, true);
|
||
|
if (parts.length === 1) {
|
||
|
if (contentFits) {
|
||
|
cmds.push(contentFlatCmd);
|
||
|
} else {
|
||
|
cmds.push(contentBreakCmd);
|
||
|
}
|
||
|
break;
|
||
|
}
|
||
|
const whitespaceFlatCmd = {
|
||
|
ind,
|
||
|
mode: MODE_FLAT,
|
||
|
doc: whitespace
|
||
|
};
|
||
|
const whitespaceBreakCmd = {
|
||
|
ind,
|
||
|
mode: MODE_BREAK,
|
||
|
doc: whitespace
|
||
|
};
|
||
|
if (parts.length === 2) {
|
||
|
if (contentFits) {
|
||
|
cmds.push(whitespaceFlatCmd, contentFlatCmd);
|
||
|
} else {
|
||
|
cmds.push(whitespaceBreakCmd, contentBreakCmd);
|
||
|
}
|
||
|
break;
|
||
|
}
|
||
|
parts.splice(0, 2);
|
||
|
const remainingCmd = {
|
||
|
ind,
|
||
|
mode,
|
||
|
doc: fill(parts)
|
||
|
};
|
||
|
const secondContent = parts[0];
|
||
|
const firstAndSecondContentFlatCmd = {
|
||
|
ind,
|
||
|
mode: MODE_FLAT,
|
||
|
doc: [content, whitespace, secondContent]
|
||
|
};
|
||
|
const firstAndSecondContentFits = fits(firstAndSecondContentFlatCmd, [], rem, lineSuffix.length > 0, true);
|
||
|
if (firstAndSecondContentFits) {
|
||
|
cmds.push(remainingCmd, whitespaceFlatCmd, contentFlatCmd);
|
||
|
} else if (contentFits) {
|
||
|
cmds.push(remainingCmd, whitespaceBreakCmd, contentFlatCmd);
|
||
|
} else {
|
||
|
cmds.push(remainingCmd, whitespaceBreakCmd, contentBreakCmd);
|
||
|
}
|
||
|
break;
|
||
|
}
|
||
|
case "if-break":
|
||
|
case "indent-if-break": {
|
||
|
const groupMode = doc2.groupId ? groupModeMap[doc2.groupId] : mode;
|
||
|
if (groupMode === MODE_BREAK) {
|
||
|
const breakContents = doc2.type === "if-break" ? doc2.breakContents : doc2.negate ? doc2.contents : indent(doc2.contents);
|
||
|
if (breakContents) {
|
||
|
cmds.push({
|
||
|
ind,
|
||
|
mode,
|
||
|
doc: breakContents
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
if (groupMode === MODE_FLAT) {
|
||
|
const flatContents = doc2.type === "if-break" ? doc2.flatContents : doc2.negate ? indent(doc2.contents) : doc2.contents;
|
||
|
if (flatContents) {
|
||
|
cmds.push({
|
||
|
ind,
|
||
|
mode,
|
||
|
doc: flatContents
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
break;
|
||
|
}
|
||
|
case "line-suffix":
|
||
|
lineSuffix.push({
|
||
|
ind,
|
||
|
mode,
|
||
|
doc: doc2.contents
|
||
|
});
|
||
|
break;
|
||
|
case "line-suffix-boundary":
|
||
|
if (lineSuffix.length > 0) {
|
||
|
cmds.push({
|
||
|
ind,
|
||
|
mode,
|
||
|
doc: {
|
||
|
type: "line",
|
||
|
hard: true
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
break;
|
||
|
case "line":
|
||
|
switch (mode) {
|
||
|
case MODE_FLAT:
|
||
|
if (!doc2.hard) {
|
||
|
if (!doc2.soft) {
|
||
|
out.push(" ");
|
||
|
pos += 1;
|
||
|
}
|
||
|
break;
|
||
|
} else {
|
||
|
shouldRemeasure = true;
|
||
|
}
|
||
|
case MODE_BREAK:
|
||
|
if (lineSuffix.length > 0) {
|
||
|
cmds.push({
|
||
|
ind,
|
||
|
mode,
|
||
|
doc: doc2
|
||
|
}, ...lineSuffix.reverse());
|
||
|
lineSuffix.length = 0;
|
||
|
break;
|
||
|
}
|
||
|
if (doc2.literal) {
|
||
|
if (ind.root) {
|
||
|
out.push(newLine, ind.root.value);
|
||
|
pos = ind.root.length;
|
||
|
} else {
|
||
|
out.push(newLine);
|
||
|
pos = 0;
|
||
|
}
|
||
|
} else {
|
||
|
pos -= trim(out);
|
||
|
out.push(newLine + ind.value);
|
||
|
pos = ind.length;
|
||
|
}
|
||
|
break;
|
||
|
}
|
||
|
break;
|
||
|
case "label":
|
||
|
cmds.push({
|
||
|
ind,
|
||
|
mode,
|
||
|
doc: doc2.contents
|
||
|
});
|
||
|
break;
|
||
|
default:
|
||
|
}
|
||
|
}
|
||
|
if (cmds.length === 0 && lineSuffix.length > 0) {
|
||
|
cmds.push(...lineSuffix.reverse());
|
||
|
lineSuffix.length = 0;
|
||
|
}
|
||
|
}
|
||
|
const cursorPlaceholderIndex = out.indexOf(cursor.placeholder);
|
||
|
if (cursorPlaceholderIndex !== -1) {
|
||
|
const otherCursorPlaceholderIndex = out.indexOf(cursor.placeholder, cursorPlaceholderIndex + 1);
|
||
|
const beforeCursor = out.slice(0, cursorPlaceholderIndex).join("");
|
||
|
const aroundCursor = out.slice(cursorPlaceholderIndex + 1, otherCursorPlaceholderIndex).join("");
|
||
|
const afterCursor = out.slice(otherCursorPlaceholderIndex + 1).join("");
|
||
|
return {
|
||
|
formatted: beforeCursor + aroundCursor + afterCursor,
|
||
|
cursorNodeStart: beforeCursor.length,
|
||
|
cursorNodeText: aroundCursor
|
||
|
};
|
||
|
}
|
||
|
return {
|
||
|
formatted: out.join("")
|
||
|
};
|
||
|
}
|
||
|
module2.exports = {
|
||
|
printDocToString
|
||
|
};
|
||
|
}
|
||
|
});
|
||
|
var require_doc_debug = __commonJS2({
|
||
|
"src/document/doc-debug.js"(exports2, module2) {
|
||
|
"use strict";
|
||
|
init_define_process();
|
||
|
var {
|
||
|
isConcat,
|
||
|
getDocParts
|
||
|
} = require_doc_utils();
|
||
|
function flattenDoc(doc) {
|
||
|
if (!doc) {
|
||
|
return "";
|
||
|
}
|
||
|
if (isConcat(doc)) {
|
||
|
const res = [];
|
||
|
for (const part of getDocParts(doc)) {
|
||
|
if (isConcat(part)) {
|
||
|
res.push(...flattenDoc(part).parts);
|
||
|
} else {
|
||
|
const flattened = flattenDoc(part);
|
||
|
if (flattened !== "") {
|
||
|
res.push(flattened);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return {
|
||
|
type: "concat",
|
||
|
parts: res
|
||
|
};
|
||
|
}
|
||
|
if (doc.type === "if-break") {
|
||
|
return Object.assign(Object.assign({}, doc), {}, {
|
||
|
breakContents: flattenDoc(doc.breakContents),
|
||
|
flatContents: flattenDoc(doc.flatContents)
|
||
|
});
|
||
|
}
|
||
|
if (doc.type === "group") {
|
||
|
return Object.assign(Object.assign({}, doc), {}, {
|
||
|
contents: flattenDoc(doc.contents),
|
||
|
expandedStates: doc.expandedStates && doc.expandedStates.map(flattenDoc)
|
||
|
});
|
||
|
}
|
||
|
if (doc.type === "fill") {
|
||
|
return {
|
||
|
type: "fill",
|
||
|
parts: doc.parts.map(flattenDoc)
|
||
|
};
|
||
|
}
|
||
|
if (doc.contents) {
|
||
|
return Object.assign(Object.assign({}, doc), {}, {
|
||
|
contents: flattenDoc(doc.contents)
|
||
|
});
|
||
|
}
|
||
|
return doc;
|
||
|
}
|
||
|
function printDocToDebug(doc) {
|
||
|
const printedSymbols = /* @__PURE__ */ Object.create(null);
|
||
|
const usedKeysForSymbols = /* @__PURE__ */ new Set();
|
||
|
return printDoc(flattenDoc(doc));
|
||
|
function printDoc(doc2, index, parentParts) {
|
||
|
if (typeof doc2 === "string") {
|
||
|
return JSON.stringify(doc2);
|
||
|
}
|
||
|
if (isConcat(doc2)) {
|
||
|
const printed = getDocParts(doc2).map(printDoc).filter(Boolean);
|
||
|
return printed.length === 1 ? printed[0] : `[${printed.join(", ")}]`;
|
||
|
}
|
||
|
if (doc2.type === "line") {
|
||
|
const withBreakParent = Array.isArray(parentParts) && parentParts[index + 1] && parentParts[index + 1].type === "break-parent";
|
||
|
if (doc2.literal) {
|
||
|
return withBreakParent ? "literalline" : "literallineWithoutBreakParent";
|
||
|
}
|
||
|
if (doc2.hard) {
|
||
|
return withBreakParent ? "hardline" : "hardlineWithoutBreakParent";
|
||
|
}
|
||
|
if (doc2.soft) {
|
||
|
return "softline";
|
||
|
}
|
||
|
return "line";
|
||
|
}
|
||
|
if (doc2.type === "break-parent") {
|
||
|
const afterHardline = Array.isArray(parentParts) && parentParts[index - 1] && parentParts[index - 1].type === "line" && parentParts[index - 1].hard;
|
||
|
return afterHardline ? void 0 : "breakParent";
|
||
|
}
|
||
|
if (doc2.type === "trim") {
|
||
|
return "trim";
|
||
|
}
|
||
|
if (doc2.type === "indent") {
|
||
|
return "indent(" + printDoc(doc2.contents) + ")";
|
||
|
}
|
||
|
if (doc2.type === "align") {
|
||
|
return doc2.n === Number.NEGATIVE_INFINITY ? "dedentToRoot(" + printDoc(doc2.contents) + ")" : doc2.n < 0 ? "dedent(" + printDoc(doc2.contents) + ")" : doc2.n.type === "root" ? "markAsRoot(" + printDoc(doc2.contents) + ")" : "align(" + JSON.stringify(doc2.n) + ", " + printDoc(doc2.contents) + ")";
|
||
|
}
|
||
|
if (doc2.type === "if-break") {
|
||
|
return "ifBreak(" + printDoc(doc2.breakContents) + (doc2.flatContents ? ", " + printDoc(doc2.flatContents) : "") + (doc2.groupId ? (!doc2.flatContents ? ', ""' : "") + `, { groupId: ${printGroupId(doc2.groupId)} }` : "") + ")";
|
||
|
}
|
||
|
if (doc2.type === "indent-if-break") {
|
||
|
const optionsParts = [];
|
||
|
if (doc2.negate) {
|
||
|
optionsParts.push("negate: true");
|
||
|
}
|
||
|
if (doc2.groupId) {
|
||
|
optionsParts.push(`groupId: ${printGroupId(doc2.groupId)}`);
|
||
|
}
|
||
|
const options = optionsParts.length > 0 ? `, { ${optionsParts.join(", ")} }` : "";
|
||
|
return `indentIfBreak(${printDoc(doc2.contents)}${options})`;
|
||
|
}
|
||
|
if (doc2.type === "group") {
|
||
|
const optionsParts = [];
|
||
|
if (doc2.break && doc2.break !== "propagated") {
|
||
|
optionsParts.push("shouldBreak: true");
|
||
|
}
|
||
|
if (doc2.id) {
|
||
|
optionsParts.push(`id: ${printGroupId(doc2.id)}`);
|
||
|
}
|
||
|
const options = optionsParts.length > 0 ? `, { ${optionsParts.join(", ")} }` : "";
|
||
|
if (doc2.expandedStates) {
|
||
|
return `conditionalGroup([${doc2.expandedStates.map((part) => printDoc(part)).join(",")}]${options})`;
|
||
|
}
|
||
|
return `group(${printDoc(doc2.contents)}${options})`;
|
||
|
}
|
||
|
if (doc2.type === "fill") {
|
||
|
return `fill([${doc2.parts.map((part) => printDoc(part)).join(", ")}])`;
|
||
|
}
|
||
|
if (doc2.type === "line-suffix") {
|
||
|
return "lineSuffix(" + printDoc(doc2.contents) + ")";
|
||
|
}
|
||
|
if (doc2.type === "line-suffix-boundary") {
|
||
|
return "lineSuffixBoundary";
|
||
|
}
|
||
|
if (doc2.type === "label") {
|
||
|
return `label(${JSON.stringify(doc2.label)}, ${printDoc(doc2.contents)})`;
|
||
|
}
|
||
|
throw new Error("Unknown doc type " + doc2.type);
|
||
|
}
|
||
|
function printGroupId(id) {
|
||
|
if (typeof id !== "symbol") {
|
||
|
return JSON.stringify(String(id));
|
||
|
}
|
||
|
if (id in printedSymbols) {
|
||
|
return printedSymbols[id];
|
||
|
}
|
||
|
const prefix = String(id).slice(7, -1) || "symbol";
|
||
|
for (let counter = 0; ; counter++) {
|
||
|
const key = prefix + (counter > 0 ? ` #${counter}` : "");
|
||
|
if (!usedKeysForSymbols.has(key)) {
|
||
|
usedKeysForSymbols.add(key);
|
||
|
return printedSymbols[id] = `Symbol.for(${JSON.stringify(key)})`;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
module2.exports = {
|
||
|
printDocToDebug
|
||
|
};
|
||
|
}
|
||
|
});
|
||
|
init_define_process();
|
||
|
module.exports = {
|
||
|
builders: require_doc_builders(),
|
||
|
printer: require_doc_printer(),
|
||
|
utils: require_doc_utils(),
|
||
|
debug: require_doc_debug()
|
||
|
};
|
||
|
}
|
||
|
});
|
||
|
return require_doc_js_umd();
|
||
|
});
|