prettier 2.7.1 → 3.0.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +129 -1033
- package/bin-prettier.js +9 -4
- package/{cli.js → cli.mjs} +12185 -13902
- package/doc.js +1235 -1325
- package/esm/parser-angular.mjs +2 -2
- package/esm/parser-babel.mjs +16 -25
- package/esm/parser-espree.mjs +13 -24
- package/esm/parser-flow.mjs +21 -33
- package/esm/parser-glimmer.mjs +20 -22
- package/esm/parser-graphql.mjs +7 -13
- package/esm/parser-html.mjs +13 -21
- package/esm/parser-markdown.mjs +38 -54
- package/esm/parser-meriyah.mjs +7 -18
- package/esm/parser-postcss.mjs +47 -70
- package/esm/parser-typescript.mjs +58 -69
- package/esm/parser-yaml.mjs +141 -143
- package/esm/standalone.mjs +93 -85
- package/index.js +34653 -34790
- package/package.json +3 -2
- package/parser-angular.js +2 -2
- package/parser-babel.js +16 -25
- package/parser-espree.js +13 -24
- package/parser-flow.js +21 -33
- package/parser-glimmer.js +20 -22
- package/parser-graphql.js +7 -13
- package/parser-html.js +13 -21
- package/parser-markdown.js +38 -54
- package/parser-meriyah.js +7 -18
- package/parser-postcss.js +47 -70
- package/parser-typescript.js +58 -69
- package/parser-yaml.js +141 -143
- package/standalone.js +93 -85
- package/third-party.js +626 -556
package/doc.js
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
(function (factory) {
|
|
2
|
+
function interopModuleDefault(factory) {
|
|
3
|
+
var module = factory();
|
|
4
|
+
return module;
|
|
5
|
+
}
|
|
6
|
+
|
|
2
7
|
if (typeof exports === "object" && typeof module === "object") {
|
|
3
|
-
module.exports = factory
|
|
8
|
+
module.exports = interopModuleDefault(factory);
|
|
4
9
|
} else if (typeof define === "function" && define.amd) {
|
|
5
|
-
define(
|
|
10
|
+
define(function () {
|
|
11
|
+
return interopModuleDefault(factory)
|
|
12
|
+
});
|
|
6
13
|
} else {
|
|
7
14
|
var root =
|
|
8
15
|
typeof globalThis !== "undefined"
|
|
@@ -12,1381 +19,1284 @@
|
|
|
12
19
|
: typeof self !== "undefined"
|
|
13
20
|
? self
|
|
14
21
|
: this || {};
|
|
15
|
-
root.doc = factory
|
|
22
|
+
root.doc = interopModuleDefault(factory);
|
|
16
23
|
}
|
|
17
24
|
})(function() {
|
|
18
25
|
"use strict";
|
|
26
|
+
var __create = Object.create;
|
|
27
|
+
var __defProp = Object.defineProperty;
|
|
28
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
19
29
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
30
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
31
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
32
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
33
|
+
var __esm = (fn, res) => function __init() {
|
|
34
|
+
return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
|
|
35
|
+
};
|
|
20
36
|
var __commonJS = (cb, mod) => function __require() {
|
|
21
37
|
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
22
38
|
};
|
|
39
|
+
var __export = (target, all) => {
|
|
40
|
+
for (var name in all)
|
|
41
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
42
|
+
};
|
|
43
|
+
var __copyProps = (to, from, except, desc) => {
|
|
44
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
45
|
+
for (let key of __getOwnPropNames(from))
|
|
46
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
47
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
48
|
+
}
|
|
49
|
+
return to;
|
|
50
|
+
};
|
|
51
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
52
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
53
|
+
mod
|
|
54
|
+
));
|
|
55
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
56
|
+
var __publicField = (obj, key, value) => {
|
|
57
|
+
__defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
58
|
+
return value;
|
|
59
|
+
};
|
|
23
60
|
|
|
24
|
-
//
|
|
25
|
-
var
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
var __commonJS2 = (cb, mod) => function __require() {
|
|
37
|
-
return mod || (0, cb[__getOwnPropNames2(cb)[0]])((mod = {
|
|
38
|
-
exports: {}
|
|
39
|
-
}).exports, mod), mod.exports;
|
|
40
|
-
};
|
|
41
|
-
var __export = (target, all) => {
|
|
42
|
-
for (var name in all)
|
|
43
|
-
__defProp(target, name, {
|
|
44
|
-
get: all[name],
|
|
45
|
-
enumerable: true
|
|
46
|
-
});
|
|
47
|
-
};
|
|
48
|
-
var __copyProps = (to, from, except, desc) => {
|
|
49
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
50
|
-
for (let key of __getOwnPropNames2(from))
|
|
51
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
52
|
-
__defProp(to, key, {
|
|
53
|
-
get: () => from[key],
|
|
54
|
-
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
55
|
-
});
|
|
56
|
-
}
|
|
57
|
-
return to;
|
|
61
|
+
// <define:process>
|
|
62
|
+
var init_define_process = __esm({
|
|
63
|
+
"<define:process>"() {
|
|
64
|
+
}
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
// node_modules/string-width/node_modules/emoji-regex/index.js
|
|
68
|
+
var require_emoji_regex = __commonJS({
|
|
69
|
+
"node_modules/string-width/node_modules/emoji-regex/index.js"(exports, module) {
|
|
70
|
+
"use strict";
|
|
71
|
+
init_define_process();
|
|
72
|
+
module.exports = function() {
|
|
73
|
+
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-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83E\uDDD1(?:\u200D(?:\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D[\uDC66\uDC67])|\uD83D\uDC69\u200D\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D\uDC41\uFE0F\u200D\uD83D\uDDE8|\uD83E\uDDD1(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|\uD83D\uDC69(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|\uD83D\uDE36\u200D\uD83C\uDF2B|\uD83C\uDFF3\uFE0F\u200D\u26A7|\uD83D\uDC3B\u200D\u2744|(?:(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF])\u200D[\u2640\u2642]|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|\uD83C\uDFF4\u200D\u2620|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])\u200D[\u2640\u2642]|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u2600-\u2604\u260E\u2611\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26B0\u26B1\u26C8\u26CF\u26D1\u26D3\u26E9\u26F0\u26F1\u26F4\u26F7\u26F8\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u3030\u303D\u3297\u3299]|\uD83C[\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]|\uD83D[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3])\uFE0F|\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08|\uD83D\uDC69\u200D\uD83D\uDC67|\uD83D\uDC69\u200D\uD83D\uDC66|\uD83D\uDE35\u200D\uD83D\uDCAB|\uD83D\uDE2E\u200D\uD83D\uDCA8|\uD83D\uDC15\u200D\uD83E\uDDBA|\uD83E\uDDD1(?:\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC|\uD83C\uDFFB)?|\uD83D\uDC69(?:\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC|\uD83C\uDFFB)?|\uD83C\uDDFD\uD83C\uDDF0|\uD83C\uDDF6\uD83C\uDDE6|\uD83C\uDDF4\uD83C\uDDF2|\uD83D\uDC08\u200D\u2B1B|\u2764\uFE0F\u200D(?:\uD83D\uDD25|\uD83E\uDE79)|\uD83D\uDC41\uFE0F|\uD83C\uDFF3\uFE0F|\uD83C\uDDFF(?:\uD83C[\uDDE6\uDDF2\uDDFC])|\uD83C\uDDFE(?:\uD83C[\uDDEA\uDDF9])|\uD83C\uDDFC(?:\uD83C[\uDDEB\uDDF8])|\uD83C\uDDFB(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA])|\uD83C\uDDFA(?:\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF])|\uD83C\uDDF9(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF])|\uD83C\uDDF8(?:\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF])|\uD83C\uDDF7(?:\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC])|\uD83C\uDDF5(?:\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE])|\uD83C\uDDF3(?:\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF])|\uD83C\uDDF2(?:\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF])|\uD83C\uDDF1(?:\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE])|\uD83C\uDDF0(?:\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF])|\uD83C\uDDEF(?:\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5])|\uD83C\uDDEE(?:\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9])|\uD83C\uDDED(?:\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA])|\uD83C\uDDEC(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE])|\uD83C\uDDEB(?:\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7])|\uD83C\uDDEA(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA])|\uD83C\uDDE9(?:\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF])|\uD83C\uDDE8(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF])|\uD83C\uDDE7(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF])|\uD83C\uDDE6(?:\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF])|[#\*0-9]\uFE0F\u20E3|\u2764\uFE0F|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])|\uD83C\uDFF4|(?:[\u270A\u270B]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5])(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u261D\u270C\u270D]|\uD83D[\uDD74\uDD90])(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])|[\u270A\u270B]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC08\uDC15\uDC3B\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE2E\uDE35\uDE36\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5]|\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD]|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF]|[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0D\uDD0E\uDD10-\uDD17\uDD1D\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78\uDD7A-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCB\uDDD0\uDDE0-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6]|(?:[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u270A\u270B\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF93\uDFA0-\uDFCA\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF4\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC3E\uDC40\uDC42-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDD7A\uDD95\uDD96\uDDA4\uDDFB-\uDE4F\uDE80-\uDEC5\uDECC\uDED0-\uDED2\uDED5-\uDED7\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0C-\uDD3A\uDD3C-\uDD45\uDD47-\uDD78\uDD7A-\uDDCB\uDDCD-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6])|(?:[#\*0-9\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692-\u2697\u2699\u269B\u269C\u26A0\u26A1\u26A7\u26AA\u26AB\u26B0\u26B1\u26BD\u26BE\u26C4\u26C5\u26C8\u26CE\u26CF\u26D1\u26D3\u26D4\u26E9\u26EA\u26F0-\u26F5\u26F7-\u26FA\u26FD\u2702\u2705\u2708-\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763\u2764\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299]|\uD83C[\uDC04\uDCCF\uDD70\uDD71\uDD7E\uDD7F\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE02\uDE1A\uDE2F\uDE32-\uDE3A\uDE50\uDE51\uDF00-\uDF21\uDF24-\uDF93\uDF96\uDF97\uDF99-\uDF9B\uDF9E-\uDFF0\uDFF3-\uDFF5\uDFF7-\uDFFF]|\uD83D[\uDC00-\uDCFD\uDCFF-\uDD3D\uDD49-\uDD4E\uDD50-\uDD67\uDD6F\uDD70\uDD73-\uDD7A\uDD87\uDD8A-\uDD8D\uDD90\uDD95\uDD96\uDDA4\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA-\uDE4F\uDE80-\uDEC5\uDECB-\uDED2\uDED5-\uDED7\uDEE0-\uDEE5\uDEE9\uDEEB\uDEEC\uDEF0\uDEF3-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0C-\uDD3A\uDD3C-\uDD45\uDD47-\uDD78\uDD7A-\uDDCB\uDDCD-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6])\uFE0F|(?:[\u261D\u26F9\u270A-\u270D]|\uD83C[\uDF85\uDFC2-\uDFC4\uDFC7\uDFCA-\uDFCC]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66-\uDC78\uDC7C\uDC81-\uDC83\uDC85-\uDC87\uDC8F\uDC91\uDCAA\uDD74\uDD75\uDD7A\uDD90\uDD95\uDD96\uDE45-\uDE47\uDE4B-\uDE4F\uDEA3\uDEB4-\uDEB6\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1F\uDD26\uDD30-\uDD39\uDD3C-\uDD3E\uDD77\uDDB5\uDDB6\uDDB8\uDDB9\uDDBB\uDDCD-\uDDCF\uDDD1-\uDDDD])/g;
|
|
58
74
|
};
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
75
|
+
}
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
// src/document/index.js
|
|
79
|
+
var document_exports = {};
|
|
80
|
+
__export(document_exports, {
|
|
81
|
+
builders: () => builders_exports,
|
|
82
|
+
debug: () => debug_exports,
|
|
83
|
+
printer: () => printer_exports,
|
|
84
|
+
utils: () => utils_exports
|
|
85
|
+
});
|
|
86
|
+
init_define_process();
|
|
87
|
+
|
|
88
|
+
// src/document/builders.js
|
|
89
|
+
var builders_exports = {};
|
|
90
|
+
__export(builders_exports, {
|
|
91
|
+
addAlignmentToDoc: () => addAlignmentToDoc,
|
|
92
|
+
align: () => align,
|
|
93
|
+
breakParent: () => breakParent,
|
|
94
|
+
concat: () => concat,
|
|
95
|
+
conditionalGroup: () => conditionalGroup,
|
|
96
|
+
cursor: () => cursor,
|
|
97
|
+
dedent: () => dedent,
|
|
98
|
+
dedentToRoot: () => dedentToRoot,
|
|
99
|
+
fill: () => fill,
|
|
100
|
+
group: () => group,
|
|
101
|
+
hardline: () => hardline,
|
|
102
|
+
hardlineWithoutBreakParent: () => hardlineWithoutBreakParent,
|
|
103
|
+
ifBreak: () => ifBreak,
|
|
104
|
+
indent: () => indent,
|
|
105
|
+
indentIfBreak: () => indentIfBreak,
|
|
106
|
+
join: () => join,
|
|
107
|
+
label: () => label,
|
|
108
|
+
line: () => line,
|
|
109
|
+
lineSuffix: () => lineSuffix,
|
|
110
|
+
lineSuffixBoundary: () => lineSuffixBoundary,
|
|
111
|
+
literalline: () => literalline,
|
|
112
|
+
literallineWithoutBreakParent: () => literallineWithoutBreakParent,
|
|
113
|
+
markAsRoot: () => markAsRoot,
|
|
114
|
+
softline: () => softline,
|
|
115
|
+
trim: () => trim
|
|
116
|
+
});
|
|
117
|
+
init_define_process();
|
|
118
|
+
|
|
119
|
+
// src/document/constants.js
|
|
120
|
+
init_define_process();
|
|
121
|
+
var DOC_TYPE_STRING = "string";
|
|
122
|
+
var DOC_TYPE_ARRAY = "array";
|
|
123
|
+
var DOC_TYPE_CURSOR = "cursor";
|
|
124
|
+
var DOC_TYPE_INDENT = "indent";
|
|
125
|
+
var DOC_TYPE_ALIGN = "align";
|
|
126
|
+
var DOC_TYPE_TRIM = "trim";
|
|
127
|
+
var DOC_TYPE_GROUP = "group";
|
|
128
|
+
var DOC_TYPE_FILL = "fill";
|
|
129
|
+
var DOC_TYPE_IF_BREAK = "if-break";
|
|
130
|
+
var DOC_TYPE_INDENT_IF_BREAK = "indent-if-break";
|
|
131
|
+
var DOC_TYPE_LINE_SUFFIX = "line-suffix";
|
|
132
|
+
var DOC_TYPE_LINE_SUFFIX_BOUNDARY = "line-suffix-boundary";
|
|
133
|
+
var DOC_TYPE_LINE = "line";
|
|
134
|
+
var DOC_TYPE_LABEL = "label";
|
|
135
|
+
var DOC_TYPE_BREAK_PARENT = "break-parent";
|
|
136
|
+
|
|
137
|
+
// src/document/builders.js
|
|
138
|
+
function indent(contents) {
|
|
139
|
+
if (false) {
|
|
140
|
+
assertDoc(contents);
|
|
141
|
+
}
|
|
142
|
+
return { type: DOC_TYPE_INDENT, contents };
|
|
143
|
+
}
|
|
144
|
+
function align(widthOrString, contents) {
|
|
145
|
+
if (false) {
|
|
146
|
+
assertDoc(contents);
|
|
147
|
+
}
|
|
148
|
+
return { type: DOC_TYPE_ALIGN, contents, n: widthOrString };
|
|
149
|
+
}
|
|
150
|
+
function group(contents, opts = {}) {
|
|
151
|
+
if (false) {
|
|
152
|
+
assertDoc(contents);
|
|
153
|
+
}
|
|
154
|
+
return {
|
|
155
|
+
type: DOC_TYPE_GROUP,
|
|
156
|
+
id: opts.id,
|
|
157
|
+
contents,
|
|
158
|
+
break: Boolean(opts.shouldBreak),
|
|
159
|
+
expandedStates: opts.expandedStates
|
|
160
|
+
};
|
|
161
|
+
}
|
|
162
|
+
function dedentToRoot(contents) {
|
|
163
|
+
return align(Number.NEGATIVE_INFINITY, contents);
|
|
164
|
+
}
|
|
165
|
+
function markAsRoot(contents) {
|
|
166
|
+
return align({ type: "root" }, contents);
|
|
167
|
+
}
|
|
168
|
+
function dedent(contents) {
|
|
169
|
+
return align(-1, contents);
|
|
170
|
+
}
|
|
171
|
+
function conditionalGroup(states, opts) {
|
|
172
|
+
return group(states[0], { ...opts, expandedStates: states });
|
|
173
|
+
}
|
|
174
|
+
function fill(parts) {
|
|
175
|
+
if (false) {
|
|
176
|
+
for (const part of parts) {
|
|
177
|
+
assertDoc(part);
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
return { type: DOC_TYPE_FILL, parts };
|
|
181
|
+
}
|
|
182
|
+
function ifBreak(breakContents, flatContents, opts = {}) {
|
|
183
|
+
if (false) {
|
|
184
|
+
if (breakContents) {
|
|
185
|
+
assertDoc(breakContents);
|
|
186
|
+
}
|
|
187
|
+
if (flatContents) {
|
|
188
|
+
assertDoc(flatContents);
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
return {
|
|
192
|
+
type: DOC_TYPE_IF_BREAK,
|
|
193
|
+
breakContents,
|
|
194
|
+
flatContents,
|
|
195
|
+
groupId: opts.groupId
|
|
196
|
+
};
|
|
197
|
+
}
|
|
198
|
+
function indentIfBreak(contents, opts) {
|
|
199
|
+
return {
|
|
200
|
+
type: DOC_TYPE_INDENT_IF_BREAK,
|
|
201
|
+
contents,
|
|
202
|
+
groupId: opts.groupId,
|
|
203
|
+
negate: opts.negate
|
|
204
|
+
};
|
|
205
|
+
}
|
|
206
|
+
function lineSuffix(contents) {
|
|
207
|
+
if (false) {
|
|
208
|
+
assertDoc(contents);
|
|
209
|
+
}
|
|
210
|
+
return { type: DOC_TYPE_LINE_SUFFIX, contents };
|
|
211
|
+
}
|
|
212
|
+
var lineSuffixBoundary = { type: DOC_TYPE_LINE_SUFFIX_BOUNDARY };
|
|
213
|
+
var breakParent = { type: DOC_TYPE_BREAK_PARENT };
|
|
214
|
+
var trim = { type: DOC_TYPE_TRIM };
|
|
215
|
+
var hardlineWithoutBreakParent = { type: DOC_TYPE_LINE, hard: true };
|
|
216
|
+
var literallineWithoutBreakParent = {
|
|
217
|
+
type: DOC_TYPE_LINE,
|
|
218
|
+
hard: true,
|
|
219
|
+
literal: true
|
|
220
|
+
};
|
|
221
|
+
var line = { type: DOC_TYPE_LINE };
|
|
222
|
+
var softline = { type: DOC_TYPE_LINE, soft: true };
|
|
223
|
+
var hardline = [hardlineWithoutBreakParent, breakParent];
|
|
224
|
+
var literalline = [literallineWithoutBreakParent, breakParent];
|
|
225
|
+
var cursor = { type: DOC_TYPE_CURSOR, placeholder: Symbol("cursor") };
|
|
226
|
+
function join(sep, arr) {
|
|
227
|
+
const res = [];
|
|
228
|
+
for (let i = 0; i < arr.length; i++) {
|
|
229
|
+
if (i !== 0) {
|
|
230
|
+
res.push(sep);
|
|
231
|
+
}
|
|
232
|
+
res.push(arr[i]);
|
|
233
|
+
}
|
|
234
|
+
return res;
|
|
235
|
+
}
|
|
236
|
+
function addAlignmentToDoc(doc, size, tabWidth) {
|
|
237
|
+
let aligned = doc;
|
|
238
|
+
if (size > 0) {
|
|
239
|
+
for (let i = 0; i < Math.floor(size / tabWidth); ++i) {
|
|
240
|
+
aligned = indent(aligned);
|
|
241
|
+
}
|
|
242
|
+
aligned = align(size % tabWidth, aligned);
|
|
243
|
+
aligned = align(Number.NEGATIVE_INFINITY, aligned);
|
|
244
|
+
}
|
|
245
|
+
return aligned;
|
|
246
|
+
}
|
|
247
|
+
function label(label2, contents) {
|
|
248
|
+
return { type: DOC_TYPE_LABEL, label: label2, contents };
|
|
249
|
+
}
|
|
250
|
+
var concat = (parts) => parts;
|
|
251
|
+
|
|
252
|
+
// src/document/printer.js
|
|
253
|
+
var printer_exports = {};
|
|
254
|
+
__export(printer_exports, {
|
|
255
|
+
printDocToString: () => printDocToString
|
|
256
|
+
});
|
|
257
|
+
init_define_process();
|
|
258
|
+
|
|
259
|
+
// src/common/end-of-line.js
|
|
260
|
+
init_define_process();
|
|
261
|
+
function convertEndOfLineToChars(value) {
|
|
262
|
+
switch (value) {
|
|
263
|
+
case "cr":
|
|
264
|
+
return "\r";
|
|
265
|
+
case "crlf":
|
|
266
|
+
return "\r\n";
|
|
267
|
+
default:
|
|
268
|
+
return "\n";
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
// src/utils/get-last.js
|
|
273
|
+
init_define_process();
|
|
274
|
+
var getLast = (arr) => arr[arr.length - 1];
|
|
275
|
+
var get_last_default = getLast;
|
|
276
|
+
|
|
277
|
+
// src/utils/get-string-width.js
|
|
278
|
+
init_define_process();
|
|
279
|
+
|
|
280
|
+
// node_modules/string-width/index.js
|
|
281
|
+
init_define_process();
|
|
282
|
+
|
|
283
|
+
// node_modules/strip-ansi/index.js
|
|
284
|
+
init_define_process();
|
|
285
|
+
|
|
286
|
+
// node_modules/strip-ansi/node_modules/ansi-regex/index.js
|
|
287
|
+
init_define_process();
|
|
288
|
+
function ansiRegex({ onlyFirst = false } = {}) {
|
|
289
|
+
const pattern = [
|
|
290
|
+
"[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)",
|
|
291
|
+
"(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))"
|
|
292
|
+
].join("|");
|
|
293
|
+
return new RegExp(pattern, onlyFirst ? void 0 : "g");
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
// node_modules/strip-ansi/index.js
|
|
297
|
+
function stripAnsi(string) {
|
|
298
|
+
if (typeof string !== "string") {
|
|
299
|
+
throw new TypeError(`Expected a \`string\`, got \`${typeof string}\``);
|
|
300
|
+
}
|
|
301
|
+
return string.replace(ansiRegex(), "");
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
// node_modules/string-width/node_modules/is-fullwidth-code-point/index.js
|
|
305
|
+
init_define_process();
|
|
306
|
+
function isFullwidthCodePoint(codePoint) {
|
|
307
|
+
if (!Number.isInteger(codePoint)) {
|
|
308
|
+
return false;
|
|
309
|
+
}
|
|
310
|
+
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);
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
// node_modules/string-width/index.js
|
|
314
|
+
var import_emoji_regex = __toESM(require_emoji_regex(), 1);
|
|
315
|
+
function stringWidth(string) {
|
|
316
|
+
if (typeof string !== "string" || string.length === 0) {
|
|
317
|
+
return 0;
|
|
318
|
+
}
|
|
319
|
+
string = stripAnsi(string);
|
|
320
|
+
if (string.length === 0) {
|
|
321
|
+
return 0;
|
|
322
|
+
}
|
|
323
|
+
string = string.replace((0, import_emoji_regex.default)(), " ");
|
|
324
|
+
let width = 0;
|
|
325
|
+
for (let index = 0; index < string.length; index++) {
|
|
326
|
+
const codePoint = string.codePointAt(index);
|
|
327
|
+
if (codePoint <= 31 || codePoint >= 127 && codePoint <= 159) {
|
|
328
|
+
continue;
|
|
329
|
+
}
|
|
330
|
+
if (codePoint >= 768 && codePoint <= 879) {
|
|
331
|
+
continue;
|
|
332
|
+
}
|
|
333
|
+
if (codePoint > 65535) {
|
|
334
|
+
index++;
|
|
335
|
+
}
|
|
336
|
+
width += isFullwidthCodePoint(codePoint) ? 2 : 1;
|
|
337
|
+
}
|
|
338
|
+
return width;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
// src/utils/get-string-width.js
|
|
342
|
+
var notAsciiRegex = /[^\x20-\x7F]/;
|
|
343
|
+
function getStringWidth(text) {
|
|
344
|
+
if (!text) {
|
|
345
|
+
return 0;
|
|
346
|
+
}
|
|
347
|
+
if (!notAsciiRegex.test(text)) {
|
|
348
|
+
return text.length;
|
|
349
|
+
}
|
|
350
|
+
return stringWidth(text);
|
|
351
|
+
}
|
|
352
|
+
var get_string_width_default = getStringWidth;
|
|
353
|
+
|
|
354
|
+
// src/document/utils.js
|
|
355
|
+
var utils_exports = {};
|
|
356
|
+
__export(utils_exports, {
|
|
357
|
+
canBreak: () => canBreak,
|
|
358
|
+
cleanDoc: () => cleanDoc,
|
|
359
|
+
findInDoc: () => findInDoc,
|
|
360
|
+
getDocParts: () => getDocParts,
|
|
361
|
+
getDocType: () => getDocType,
|
|
362
|
+
mapDoc: () => mapDoc,
|
|
363
|
+
normalizeDoc: () => normalizeDoc,
|
|
364
|
+
normalizeParts: () => normalizeParts,
|
|
365
|
+
propagateBreaks: () => propagateBreaks,
|
|
366
|
+
removeLines: () => removeLines,
|
|
367
|
+
replaceEndOfLine: () => replaceEndOfLine,
|
|
368
|
+
replaceTextEndOfLine: () => replaceTextEndOfLine,
|
|
369
|
+
stripTrailingHardline: () => stripTrailingHardline,
|
|
370
|
+
traverseDoc: () => traverseDoc,
|
|
371
|
+
willBreak: () => willBreak
|
|
372
|
+
});
|
|
373
|
+
init_define_process();
|
|
374
|
+
var getDocParts = (doc) => {
|
|
375
|
+
if (Array.isArray(doc)) {
|
|
376
|
+
return doc;
|
|
377
|
+
}
|
|
378
|
+
if (doc.type !== DOC_TYPE_FILL) {
|
|
379
|
+
throw new Error(`Expect doc to be 'array' or '${DOC_TYPE_FILL}'.`);
|
|
380
|
+
}
|
|
381
|
+
return doc.parts;
|
|
382
|
+
};
|
|
383
|
+
var traverseDocOnExitStackMarker = {};
|
|
384
|
+
function traverseDoc(doc, onEnter, onExit, shouldTraverseConditionalGroups) {
|
|
385
|
+
const docsStack = [doc];
|
|
386
|
+
while (docsStack.length > 0) {
|
|
387
|
+
const doc2 = docsStack.pop();
|
|
388
|
+
if (doc2 === traverseDocOnExitStackMarker) {
|
|
389
|
+
onExit(docsStack.pop());
|
|
390
|
+
continue;
|
|
391
|
+
}
|
|
392
|
+
if (onExit) {
|
|
393
|
+
docsStack.push(doc2, traverseDocOnExitStackMarker);
|
|
394
|
+
}
|
|
395
|
+
if (!onEnter || onEnter(doc2) !== false) {
|
|
396
|
+
if (Array.isArray(doc2) || doc2.type === DOC_TYPE_FILL) {
|
|
397
|
+
const parts = getDocParts(doc2);
|
|
398
|
+
for (let ic = parts.length, i = ic - 1; i >= 0; --i) {
|
|
399
|
+
docsStack.push(parts[i]);
|
|
84
400
|
}
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
}
|
|
89
|
-
return {
|
|
90
|
-
type: "indent",
|
|
91
|
-
contents
|
|
92
|
-
};
|
|
401
|
+
} else if (doc2.type === DOC_TYPE_IF_BREAK) {
|
|
402
|
+
if (doc2.flatContents) {
|
|
403
|
+
docsStack.push(doc2.flatContents);
|
|
93
404
|
}
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
assertDoc(contents);
|
|
97
|
-
}
|
|
98
|
-
return {
|
|
99
|
-
type: "align",
|
|
100
|
-
contents,
|
|
101
|
-
n: widthOrString
|
|
102
|
-
};
|
|
405
|
+
if (doc2.breakContents) {
|
|
406
|
+
docsStack.push(doc2.breakContents);
|
|
103
407
|
}
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
408
|
+
} else if (doc2.type === DOC_TYPE_GROUP && doc2.expandedStates) {
|
|
409
|
+
if (shouldTraverseConditionalGroups) {
|
|
410
|
+
for (let ic = doc2.expandedStates.length, i = ic - 1; i >= 0; --i) {
|
|
411
|
+
docsStack.push(doc2.expandedStates[i]);
|
|
108
412
|
}
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
413
|
+
} else {
|
|
414
|
+
docsStack.push(doc2.contents);
|
|
415
|
+
}
|
|
416
|
+
} else if (doc2.contents) {
|
|
417
|
+
docsStack.push(doc2.contents);
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
function mapDoc(doc, cb) {
|
|
423
|
+
const mapped = /* @__PURE__ */ new Map();
|
|
424
|
+
return rec(doc);
|
|
425
|
+
function rec(doc2) {
|
|
426
|
+
if (mapped.has(doc2)) {
|
|
427
|
+
return mapped.get(doc2);
|
|
428
|
+
}
|
|
429
|
+
const result = process2(doc2);
|
|
430
|
+
mapped.set(doc2, result);
|
|
431
|
+
return result;
|
|
432
|
+
}
|
|
433
|
+
function process2(doc2) {
|
|
434
|
+
if (Array.isArray(doc2)) {
|
|
435
|
+
return cb(doc2.map(rec));
|
|
436
|
+
}
|
|
437
|
+
if (doc2.type === DOC_TYPE_ARRAY || doc2.type === DOC_TYPE_FILL) {
|
|
438
|
+
const parts = doc2.parts.map(rec);
|
|
439
|
+
return cb({ ...doc2, parts });
|
|
440
|
+
}
|
|
441
|
+
if (doc2.type === DOC_TYPE_IF_BREAK) {
|
|
442
|
+
const breakContents = doc2.breakContents && rec(doc2.breakContents);
|
|
443
|
+
const flatContents = doc2.flatContents && rec(doc2.flatContents);
|
|
444
|
+
return cb({ ...doc2, breakContents, flatContents });
|
|
445
|
+
}
|
|
446
|
+
if (doc2.type === DOC_TYPE_GROUP && doc2.expandedStates) {
|
|
447
|
+
const expandedStates = doc2.expandedStates.map(rec);
|
|
448
|
+
const contents = expandedStates[0];
|
|
449
|
+
return cb({ ...doc2, contents, expandedStates });
|
|
450
|
+
}
|
|
451
|
+
if (doc2.contents) {
|
|
452
|
+
const contents = rec(doc2.contents);
|
|
453
|
+
return cb({ ...doc2, contents });
|
|
454
|
+
}
|
|
455
|
+
return cb(doc2);
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
function findInDoc(doc, fn, defaultValue) {
|
|
459
|
+
let result = defaultValue;
|
|
460
|
+
let hasStopped = false;
|
|
461
|
+
function findInDocOnEnterFn(doc2) {
|
|
462
|
+
const maybeResult = fn(doc2);
|
|
463
|
+
if (maybeResult !== void 0) {
|
|
464
|
+
hasStopped = true;
|
|
465
|
+
result = maybeResult;
|
|
466
|
+
}
|
|
467
|
+
if (hasStopped) {
|
|
468
|
+
return false;
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
traverseDoc(doc, findInDocOnEnterFn);
|
|
472
|
+
return result;
|
|
473
|
+
}
|
|
474
|
+
function willBreakFn(doc) {
|
|
475
|
+
if (doc.type === DOC_TYPE_GROUP && doc.break) {
|
|
476
|
+
return true;
|
|
477
|
+
}
|
|
478
|
+
if (doc.type === DOC_TYPE_LINE && doc.hard) {
|
|
479
|
+
return true;
|
|
480
|
+
}
|
|
481
|
+
if (doc.type === DOC_TYPE_BREAK_PARENT) {
|
|
482
|
+
return true;
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
function willBreak(doc) {
|
|
486
|
+
return findInDoc(doc, willBreakFn, false);
|
|
487
|
+
}
|
|
488
|
+
function breakParentGroup(groupStack) {
|
|
489
|
+
if (groupStack.length > 0) {
|
|
490
|
+
const parentGroup = get_last_default(groupStack);
|
|
491
|
+
if (!parentGroup.expandedStates && !parentGroup.break) {
|
|
492
|
+
parentGroup.break = "propagated";
|
|
493
|
+
}
|
|
494
|
+
}
|
|
495
|
+
return null;
|
|
496
|
+
}
|
|
497
|
+
function propagateBreaks(doc) {
|
|
498
|
+
const alreadyVisitedSet = /* @__PURE__ */ new Set();
|
|
499
|
+
const groupStack = [];
|
|
500
|
+
function propagateBreaksOnEnterFn(doc2) {
|
|
501
|
+
if (doc2.type === DOC_TYPE_BREAK_PARENT) {
|
|
502
|
+
breakParentGroup(groupStack);
|
|
503
|
+
}
|
|
504
|
+
if (doc2.type === DOC_TYPE_GROUP) {
|
|
505
|
+
groupStack.push(doc2);
|
|
506
|
+
if (alreadyVisitedSet.has(doc2)) {
|
|
507
|
+
return false;
|
|
508
|
+
}
|
|
509
|
+
alreadyVisitedSet.add(doc2);
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
function propagateBreaksOnExitFn(doc2) {
|
|
513
|
+
if (doc2.type === DOC_TYPE_GROUP) {
|
|
514
|
+
const group2 = groupStack.pop();
|
|
515
|
+
if (group2.break) {
|
|
516
|
+
breakParentGroup(groupStack);
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
}
|
|
520
|
+
traverseDoc(
|
|
521
|
+
doc,
|
|
522
|
+
propagateBreaksOnEnterFn,
|
|
523
|
+
propagateBreaksOnExitFn,
|
|
524
|
+
true
|
|
525
|
+
);
|
|
526
|
+
}
|
|
527
|
+
function removeLinesFn(doc) {
|
|
528
|
+
if (doc.type === DOC_TYPE_LINE && !doc.hard) {
|
|
529
|
+
return doc.soft ? "" : " ";
|
|
530
|
+
}
|
|
531
|
+
if (doc.type === DOC_TYPE_IF_BREAK) {
|
|
532
|
+
return doc.flatContents || "";
|
|
533
|
+
}
|
|
534
|
+
return doc;
|
|
535
|
+
}
|
|
536
|
+
function removeLines(doc) {
|
|
537
|
+
return mapDoc(doc, removeLinesFn);
|
|
538
|
+
}
|
|
539
|
+
var isHardline = (doc, nextDoc) => doc && doc.type === DOC_TYPE_LINE && doc.hard && nextDoc && nextDoc.type === DOC_TYPE_BREAK_PARENT;
|
|
540
|
+
function stripDocTrailingHardlineFromDoc(doc) {
|
|
541
|
+
if (!doc) {
|
|
542
|
+
return doc;
|
|
543
|
+
}
|
|
544
|
+
if (Array.isArray(doc) || doc.type === DOC_TYPE_FILL) {
|
|
545
|
+
const parts = getDocParts(doc);
|
|
546
|
+
while (parts.length > 1 && isHardline(...parts.slice(-2))) {
|
|
547
|
+
parts.length -= 2;
|
|
548
|
+
}
|
|
549
|
+
if (parts.length > 0) {
|
|
550
|
+
const lastPart = stripDocTrailingHardlineFromDoc(get_last_default(parts));
|
|
551
|
+
parts[parts.length - 1] = lastPart;
|
|
552
|
+
}
|
|
553
|
+
return Array.isArray(doc) ? parts : { ...doc, parts };
|
|
554
|
+
}
|
|
555
|
+
switch (doc.type) {
|
|
556
|
+
case DOC_TYPE_ALIGN:
|
|
557
|
+
case DOC_TYPE_INDENT:
|
|
558
|
+
case DOC_TYPE_INDENT_IF_BREAK:
|
|
559
|
+
case DOC_TYPE_GROUP:
|
|
560
|
+
case DOC_TYPE_LINE_SUFFIX:
|
|
561
|
+
case DOC_TYPE_LABEL: {
|
|
562
|
+
const contents = stripDocTrailingHardlineFromDoc(doc.contents);
|
|
563
|
+
return { ...doc, contents };
|
|
564
|
+
}
|
|
565
|
+
case DOC_TYPE_IF_BREAK: {
|
|
566
|
+
const breakContents = stripDocTrailingHardlineFromDoc(doc.breakContents);
|
|
567
|
+
const flatContents = stripDocTrailingHardlineFromDoc(doc.flatContents);
|
|
568
|
+
return { ...doc, breakContents, flatContents };
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
return doc;
|
|
572
|
+
}
|
|
573
|
+
function stripTrailingHardline(doc) {
|
|
574
|
+
if (typeof doc === "string") {
|
|
575
|
+
return doc.replace(/(?:\r?\n)*$/, "");
|
|
576
|
+
}
|
|
577
|
+
return stripDocTrailingHardlineFromDoc(cleanDoc(doc));
|
|
578
|
+
}
|
|
579
|
+
function cleanDocFn(doc) {
|
|
580
|
+
switch (doc.type) {
|
|
581
|
+
case DOC_TYPE_FILL:
|
|
582
|
+
if (doc.parts.every((part) => part === "")) {
|
|
583
|
+
return "";
|
|
584
|
+
}
|
|
585
|
+
break;
|
|
586
|
+
case DOC_TYPE_GROUP:
|
|
587
|
+
if (!doc.contents && !doc.id && !doc.break && !doc.expandedStates) {
|
|
588
|
+
return "";
|
|
589
|
+
}
|
|
590
|
+
if (doc.contents.type === DOC_TYPE_GROUP && doc.contents.id === doc.id && doc.contents.break === doc.break && doc.contents.expandedStates === doc.expandedStates) {
|
|
591
|
+
return doc.contents;
|
|
592
|
+
}
|
|
593
|
+
break;
|
|
594
|
+
case DOC_TYPE_ALIGN:
|
|
595
|
+
case DOC_TYPE_INDENT:
|
|
596
|
+
case DOC_TYPE_INDENT_IF_BREAK:
|
|
597
|
+
case DOC_TYPE_LINE_SUFFIX:
|
|
598
|
+
if (!doc.contents) {
|
|
599
|
+
return "";
|
|
600
|
+
}
|
|
601
|
+
break;
|
|
602
|
+
case DOC_TYPE_IF_BREAK:
|
|
603
|
+
if (!doc.flatContents && !doc.breakContents) {
|
|
604
|
+
return "";
|
|
605
|
+
}
|
|
606
|
+
break;
|
|
607
|
+
}
|
|
608
|
+
if (!Array.isArray(doc)) {
|
|
609
|
+
return doc;
|
|
610
|
+
}
|
|
611
|
+
const parts = [];
|
|
612
|
+
for (const part of doc) {
|
|
613
|
+
if (!part) {
|
|
614
|
+
continue;
|
|
615
|
+
}
|
|
616
|
+
const [currentPart, ...restParts] = Array.isArray(part) ? part : [part];
|
|
617
|
+
if (typeof currentPart === "string" && typeof get_last_default(parts) === "string") {
|
|
618
|
+
parts[parts.length - 1] += currentPart;
|
|
619
|
+
} else {
|
|
620
|
+
parts.push(currentPart);
|
|
621
|
+
}
|
|
622
|
+
parts.push(...restParts);
|
|
623
|
+
}
|
|
624
|
+
if (parts.length === 0) {
|
|
625
|
+
return "";
|
|
626
|
+
}
|
|
627
|
+
if (parts.length === 1) {
|
|
628
|
+
return parts[0];
|
|
629
|
+
}
|
|
630
|
+
return parts;
|
|
631
|
+
}
|
|
632
|
+
function cleanDoc(doc) {
|
|
633
|
+
return mapDoc(doc, (currentDoc) => cleanDocFn(currentDoc));
|
|
634
|
+
}
|
|
635
|
+
function normalizeParts(parts) {
|
|
636
|
+
const newParts = [];
|
|
637
|
+
const restParts = parts.filter(Boolean);
|
|
638
|
+
while (restParts.length > 0) {
|
|
639
|
+
const part = restParts.shift();
|
|
640
|
+
if (!part) {
|
|
641
|
+
continue;
|
|
642
|
+
}
|
|
643
|
+
if (Array.isArray(part)) {
|
|
644
|
+
restParts.unshift(...part);
|
|
645
|
+
continue;
|
|
646
|
+
}
|
|
647
|
+
if (newParts.length > 0 && typeof get_last_default(newParts) === "string" && typeof part === "string") {
|
|
648
|
+
newParts[newParts.length - 1] += part;
|
|
649
|
+
continue;
|
|
650
|
+
}
|
|
651
|
+
newParts.push(part);
|
|
652
|
+
}
|
|
653
|
+
return newParts;
|
|
654
|
+
}
|
|
655
|
+
function normalizeDoc(doc) {
|
|
656
|
+
return mapDoc(doc, (currentDoc) => {
|
|
657
|
+
if (Array.isArray(currentDoc)) {
|
|
658
|
+
return normalizeParts(currentDoc);
|
|
659
|
+
}
|
|
660
|
+
if (!currentDoc.parts) {
|
|
661
|
+
return currentDoc;
|
|
662
|
+
}
|
|
663
|
+
return {
|
|
664
|
+
...currentDoc,
|
|
665
|
+
parts: normalizeParts(currentDoc.parts)
|
|
666
|
+
};
|
|
667
|
+
});
|
|
668
|
+
}
|
|
669
|
+
function replaceEndOfLine(doc) {
|
|
670
|
+
return mapDoc(
|
|
671
|
+
doc,
|
|
672
|
+
(currentDoc) => typeof currentDoc === "string" && currentDoc.includes("\n") ? replaceTextEndOfLine(currentDoc) : currentDoc
|
|
673
|
+
);
|
|
674
|
+
}
|
|
675
|
+
function replaceTextEndOfLine(text, replacement = literalline) {
|
|
676
|
+
return join(replacement, text.split("\n"));
|
|
677
|
+
}
|
|
678
|
+
function canBreakFn(doc) {
|
|
679
|
+
if (doc.type === DOC_TYPE_LINE) {
|
|
680
|
+
return true;
|
|
681
|
+
}
|
|
682
|
+
}
|
|
683
|
+
function canBreak(doc) {
|
|
684
|
+
return findInDoc(doc, canBreakFn, false);
|
|
685
|
+
}
|
|
686
|
+
function getDocType(doc) {
|
|
687
|
+
if (typeof doc === "string") {
|
|
688
|
+
return DOC_TYPE_STRING;
|
|
689
|
+
}
|
|
690
|
+
if (Array.isArray(doc)) {
|
|
691
|
+
return DOC_TYPE_ARRAY;
|
|
692
|
+
}
|
|
693
|
+
return doc == null ? void 0 : doc.type;
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
// src/document/invalid-doc-error.js
|
|
697
|
+
init_define_process();
|
|
698
|
+
var VALID_OBJECT_DOC_TYPE_VALUES = [
|
|
699
|
+
DOC_TYPE_CURSOR,
|
|
700
|
+
DOC_TYPE_INDENT,
|
|
701
|
+
DOC_TYPE_ALIGN,
|
|
702
|
+
DOC_TYPE_TRIM,
|
|
703
|
+
DOC_TYPE_GROUP,
|
|
704
|
+
DOC_TYPE_FILL,
|
|
705
|
+
DOC_TYPE_IF_BREAK,
|
|
706
|
+
DOC_TYPE_INDENT_IF_BREAK,
|
|
707
|
+
DOC_TYPE_LINE_SUFFIX,
|
|
708
|
+
DOC_TYPE_LINE_SUFFIX_BOUNDARY,
|
|
709
|
+
DOC_TYPE_LINE,
|
|
710
|
+
DOC_TYPE_LABEL,
|
|
711
|
+
DOC_TYPE_BREAK_PARENT
|
|
712
|
+
];
|
|
713
|
+
var disjunctionListFormat = (list) => [...list.slice(0, -1), `or ${get_last_default(list)}`].join(", ");
|
|
714
|
+
function getDocErrorMessage(doc) {
|
|
715
|
+
const type = doc === null ? null : typeof doc;
|
|
716
|
+
if (type !== "string" && type !== "object") {
|
|
717
|
+
return `Unexpected doc '${type}',
|
|
718
|
+
Expected it to be 'string' or 'object'.`;
|
|
719
|
+
}
|
|
720
|
+
const docType = getDocType(doc);
|
|
721
|
+
if (docType === DOC_TYPE_STRING || docType === DOC_TYPE_ARRAY || VALID_OBJECT_DOC_TYPE_VALUES.includes(docType)) {
|
|
722
|
+
throw new Error("doc is valid.");
|
|
723
|
+
}
|
|
724
|
+
const objectType = Object.prototype.toString.call(doc);
|
|
725
|
+
if (objectType !== "[object Object]") {
|
|
726
|
+
return `Unexpected doc '${objectType}'.`;
|
|
727
|
+
}
|
|
728
|
+
const EXPECTED_TYPE_VALUES = disjunctionListFormat(
|
|
729
|
+
VALID_OBJECT_DOC_TYPE_VALUES.map((type2) => `'${type2}'`)
|
|
730
|
+
);
|
|
731
|
+
return `Unexpected doc.type '${docType}'.
|
|
732
|
+
Expected it to be ${EXPECTED_TYPE_VALUES}.`;
|
|
733
|
+
}
|
|
734
|
+
var InvalidDocError = class extends Error {
|
|
735
|
+
constructor(doc) {
|
|
736
|
+
super(getDocErrorMessage(doc));
|
|
737
|
+
__publicField(this, "name", "InvalidDocError");
|
|
738
|
+
this.doc = doc;
|
|
739
|
+
}
|
|
740
|
+
};
|
|
741
|
+
var invalid_doc_error_default = InvalidDocError;
|
|
742
|
+
|
|
743
|
+
// src/document/printer.js
|
|
744
|
+
var groupModeMap;
|
|
745
|
+
var MODE_BREAK = 1;
|
|
746
|
+
var MODE_FLAT = 2;
|
|
747
|
+
function rootIndent() {
|
|
748
|
+
return { value: "", length: 0, queue: [] };
|
|
749
|
+
}
|
|
750
|
+
function makeIndent(ind, options) {
|
|
751
|
+
return generateInd(ind, { type: "indent" }, options);
|
|
752
|
+
}
|
|
753
|
+
function makeAlign(indent2, widthOrDoc, options) {
|
|
754
|
+
if (widthOrDoc === Number.NEGATIVE_INFINITY) {
|
|
755
|
+
return indent2.root || rootIndent();
|
|
756
|
+
}
|
|
757
|
+
if (widthOrDoc < 0) {
|
|
758
|
+
return generateInd(indent2, { type: "dedent" }, options);
|
|
759
|
+
}
|
|
760
|
+
if (!widthOrDoc) {
|
|
761
|
+
return indent2;
|
|
762
|
+
}
|
|
763
|
+
if (widthOrDoc.type === "root") {
|
|
764
|
+
return { ...indent2, root: indent2 };
|
|
765
|
+
}
|
|
766
|
+
const alignType = typeof widthOrDoc === "string" ? "stringAlign" : "numberAlign";
|
|
767
|
+
return generateInd(indent2, { type: alignType, n: widthOrDoc }, options);
|
|
768
|
+
}
|
|
769
|
+
function generateInd(ind, newPart, options) {
|
|
770
|
+
const queue = newPart.type === "dedent" ? ind.queue.slice(0, -1) : [...ind.queue, newPart];
|
|
771
|
+
let value = "";
|
|
772
|
+
let length = 0;
|
|
773
|
+
let lastTabs = 0;
|
|
774
|
+
let lastSpaces = 0;
|
|
775
|
+
for (const part of queue) {
|
|
776
|
+
switch (part.type) {
|
|
777
|
+
case "indent":
|
|
778
|
+
flush();
|
|
779
|
+
if (options.useTabs) {
|
|
780
|
+
addTabs(1);
|
|
781
|
+
} else {
|
|
782
|
+
addSpaces(options.tabWidth);
|
|
783
|
+
}
|
|
784
|
+
break;
|
|
785
|
+
case "stringAlign":
|
|
786
|
+
flush();
|
|
787
|
+
value += part.n;
|
|
788
|
+
length += part.n.length;
|
|
789
|
+
break;
|
|
790
|
+
case "numberAlign":
|
|
791
|
+
lastTabs += 1;
|
|
792
|
+
lastSpaces += part.n;
|
|
793
|
+
break;
|
|
794
|
+
default:
|
|
795
|
+
throw new Error(`Unexpected type '${part.type}'`);
|
|
796
|
+
}
|
|
797
|
+
}
|
|
798
|
+
flushSpaces();
|
|
799
|
+
return { ...ind, value, length, queue };
|
|
800
|
+
function addTabs(count) {
|
|
801
|
+
value += " ".repeat(count);
|
|
802
|
+
length += options.tabWidth * count;
|
|
803
|
+
}
|
|
804
|
+
function addSpaces(count) {
|
|
805
|
+
value += " ".repeat(count);
|
|
806
|
+
length += count;
|
|
807
|
+
}
|
|
808
|
+
function flush() {
|
|
809
|
+
if (options.useTabs) {
|
|
810
|
+
flushTabs();
|
|
811
|
+
} else {
|
|
812
|
+
flushSpaces();
|
|
813
|
+
}
|
|
814
|
+
}
|
|
815
|
+
function flushTabs() {
|
|
816
|
+
if (lastTabs > 0) {
|
|
817
|
+
addTabs(lastTabs);
|
|
818
|
+
}
|
|
819
|
+
resetLast();
|
|
820
|
+
}
|
|
821
|
+
function flushSpaces() {
|
|
822
|
+
if (lastSpaces > 0) {
|
|
823
|
+
addSpaces(lastSpaces);
|
|
824
|
+
}
|
|
825
|
+
resetLast();
|
|
826
|
+
}
|
|
827
|
+
function resetLast() {
|
|
828
|
+
lastTabs = 0;
|
|
829
|
+
lastSpaces = 0;
|
|
830
|
+
}
|
|
831
|
+
}
|
|
832
|
+
function trim2(out) {
|
|
833
|
+
if (out.length === 0) {
|
|
834
|
+
return 0;
|
|
835
|
+
}
|
|
836
|
+
let trimCount = 0;
|
|
837
|
+
while (out.length > 0 && typeof get_last_default(out) === "string" && /^[\t ]*$/.test(get_last_default(out))) {
|
|
838
|
+
trimCount += out.pop().length;
|
|
839
|
+
}
|
|
840
|
+
if (out.length > 0 && typeof get_last_default(out) === "string") {
|
|
841
|
+
const trimmed = get_last_default(out).replace(/[\t ]*$/, "");
|
|
842
|
+
trimCount += get_last_default(out).length - trimmed.length;
|
|
843
|
+
out[out.length - 1] = trimmed;
|
|
844
|
+
}
|
|
845
|
+
return trimCount;
|
|
846
|
+
}
|
|
847
|
+
function fits(next, restCommands, width, hasLineSuffix, mustBeFlat) {
|
|
848
|
+
let restIdx = restCommands.length;
|
|
849
|
+
const cmds = [next];
|
|
850
|
+
const out = [];
|
|
851
|
+
while (width >= 0) {
|
|
852
|
+
if (cmds.length === 0) {
|
|
853
|
+
if (restIdx === 0) {
|
|
854
|
+
return true;
|
|
855
|
+
}
|
|
856
|
+
cmds.push(restCommands[--restIdx]);
|
|
857
|
+
continue;
|
|
858
|
+
}
|
|
859
|
+
const { mode, doc } = cmds.pop();
|
|
860
|
+
switch (getDocType(doc)) {
|
|
861
|
+
case DOC_TYPE_STRING:
|
|
862
|
+
out.push(doc);
|
|
863
|
+
width -= get_string_width_default(doc);
|
|
864
|
+
break;
|
|
865
|
+
case DOC_TYPE_ARRAY:
|
|
866
|
+
case DOC_TYPE_FILL: {
|
|
867
|
+
const parts = getDocParts(doc);
|
|
868
|
+
for (let i = parts.length - 1; i >= 0; i--) {
|
|
869
|
+
cmds.push({ mode, doc: parts[i] });
|
|
870
|
+
}
|
|
871
|
+
break;
|
|
872
|
+
}
|
|
873
|
+
case DOC_TYPE_INDENT:
|
|
874
|
+
case DOC_TYPE_ALIGN:
|
|
875
|
+
case DOC_TYPE_INDENT_IF_BREAK:
|
|
876
|
+
case DOC_TYPE_LABEL:
|
|
877
|
+
cmds.push({ mode, doc: doc.contents });
|
|
878
|
+
break;
|
|
879
|
+
case DOC_TYPE_TRIM:
|
|
880
|
+
width += trim2(out);
|
|
881
|
+
break;
|
|
882
|
+
case DOC_TYPE_GROUP: {
|
|
883
|
+
if (mustBeFlat && doc.break) {
|
|
884
|
+
return false;
|
|
116
885
|
}
|
|
117
|
-
|
|
118
|
-
|
|
886
|
+
const groupMode = doc.break ? MODE_BREAK : mode;
|
|
887
|
+
const contents = doc.expandedStates && groupMode === MODE_BREAK ? get_last_default(doc.expandedStates) : doc.contents;
|
|
888
|
+
cmds.push({ mode: groupMode, doc: contents });
|
|
889
|
+
break;
|
|
890
|
+
}
|
|
891
|
+
case DOC_TYPE_IF_BREAK: {
|
|
892
|
+
const groupMode = doc.groupId ? groupModeMap[doc.groupId] || MODE_FLAT : mode;
|
|
893
|
+
const contents = groupMode === MODE_BREAK ? doc.breakContents : doc.flatContents;
|
|
894
|
+
if (contents) {
|
|
895
|
+
cmds.push({ mode, doc: contents });
|
|
119
896
|
}
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
897
|
+
break;
|
|
898
|
+
}
|
|
899
|
+
case DOC_TYPE_LINE:
|
|
900
|
+
if (mode === MODE_BREAK || doc.hard) {
|
|
901
|
+
return true;
|
|
124
902
|
}
|
|
125
|
-
|
|
126
|
-
|
|
903
|
+
if (!doc.soft) {
|
|
904
|
+
out.push(" ");
|
|
905
|
+
width--;
|
|
127
906
|
}
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
907
|
+
break;
|
|
908
|
+
case DOC_TYPE_LINE_SUFFIX:
|
|
909
|
+
hasLineSuffix = true;
|
|
910
|
+
break;
|
|
911
|
+
case DOC_TYPE_LINE_SUFFIX_BOUNDARY:
|
|
912
|
+
if (hasLineSuffix) {
|
|
913
|
+
return false;
|
|
132
914
|
}
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
915
|
+
break;
|
|
916
|
+
}
|
|
917
|
+
}
|
|
918
|
+
return false;
|
|
919
|
+
}
|
|
920
|
+
function printDocToString(doc, options) {
|
|
921
|
+
groupModeMap = {};
|
|
922
|
+
const width = options.printWidth;
|
|
923
|
+
const newLine = convertEndOfLineToChars(options.endOfLine);
|
|
924
|
+
let pos = 0;
|
|
925
|
+
const cmds = [{ ind: rootIndent(), mode: MODE_BREAK, doc }];
|
|
926
|
+
const out = [];
|
|
927
|
+
let shouldRemeasure = false;
|
|
928
|
+
const lineSuffix2 = [];
|
|
929
|
+
while (cmds.length > 0) {
|
|
930
|
+
const { ind, mode, doc: doc2 } = cmds.pop();
|
|
931
|
+
switch (getDocType(doc2)) {
|
|
932
|
+
case DOC_TYPE_STRING: {
|
|
933
|
+
const formatted = newLine !== "\n" ? doc2.replace(/\n/g, newLine) : doc2;
|
|
934
|
+
out.push(formatted);
|
|
935
|
+
pos += get_string_width_default(formatted);
|
|
936
|
+
break;
|
|
937
|
+
}
|
|
938
|
+
case DOC_TYPE_ARRAY: {
|
|
939
|
+
for (let i = doc2.length - 1; i >= 0; i--) {
|
|
940
|
+
cmds.push({ ind, mode, doc: doc2[i] });
|
|
143
941
|
}
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
942
|
+
break;
|
|
943
|
+
}
|
|
944
|
+
case DOC_TYPE_CURSOR:
|
|
945
|
+
out.push(cursor.placeholder);
|
|
946
|
+
break;
|
|
947
|
+
case DOC_TYPE_INDENT:
|
|
948
|
+
cmds.push({ ind: makeIndent(ind, options), mode, doc: doc2.contents });
|
|
949
|
+
break;
|
|
950
|
+
case DOC_TYPE_ALIGN:
|
|
951
|
+
cmds.push({
|
|
952
|
+
ind: makeAlign(ind, doc2.n, options),
|
|
953
|
+
mode,
|
|
954
|
+
doc: doc2.contents
|
|
955
|
+
});
|
|
956
|
+
break;
|
|
957
|
+
case DOC_TYPE_TRIM:
|
|
958
|
+
pos -= trim2(out);
|
|
959
|
+
break;
|
|
960
|
+
case DOC_TYPE_GROUP:
|
|
961
|
+
switch (mode) {
|
|
962
|
+
case MODE_FLAT:
|
|
963
|
+
if (!shouldRemeasure) {
|
|
964
|
+
cmds.push({
|
|
965
|
+
ind,
|
|
966
|
+
mode: doc2.break ? MODE_BREAK : MODE_FLAT,
|
|
967
|
+
doc: doc2.contents
|
|
968
|
+
});
|
|
969
|
+
break;
|
|
149
970
|
}
|
|
150
|
-
|
|
151
|
-
|
|
971
|
+
case MODE_BREAK: {
|
|
972
|
+
shouldRemeasure = false;
|
|
973
|
+
const next = { ind, mode: MODE_FLAT, doc: doc2.contents };
|
|
974
|
+
const rem = width - pos;
|
|
975
|
+
const hasLineSuffix = lineSuffix2.length > 0;
|
|
976
|
+
if (!doc2.break && fits(next, cmds, rem, hasLineSuffix)) {
|
|
977
|
+
cmds.push(next);
|
|
978
|
+
} else {
|
|
979
|
+
if (doc2.expandedStates) {
|
|
980
|
+
const mostExpanded = get_last_default(doc2.expandedStates);
|
|
981
|
+
if (doc2.break) {
|
|
982
|
+
cmds.push({ ind, mode: MODE_BREAK, doc: mostExpanded });
|
|
983
|
+
break;
|
|
984
|
+
} else {
|
|
985
|
+
for (let i = 1; i < doc2.expandedStates.length + 1; i++) {
|
|
986
|
+
if (i >= doc2.expandedStates.length) {
|
|
987
|
+
cmds.push({ ind, mode: MODE_BREAK, doc: mostExpanded });
|
|
988
|
+
break;
|
|
989
|
+
} else {
|
|
990
|
+
const state = doc2.expandedStates[i];
|
|
991
|
+
const cmd = { ind, mode: MODE_FLAT, doc: state };
|
|
992
|
+
if (fits(cmd, cmds, rem, hasLineSuffix)) {
|
|
993
|
+
cmds.push(cmd);
|
|
994
|
+
break;
|
|
995
|
+
}
|
|
996
|
+
}
|
|
997
|
+
}
|
|
998
|
+
}
|
|
999
|
+
} else {
|
|
1000
|
+
cmds.push({ ind, mode: MODE_BREAK, doc: doc2.contents });
|
|
1001
|
+
}
|
|
152
1002
|
}
|
|
1003
|
+
break;
|
|
153
1004
|
}
|
|
154
|
-
return {
|
|
155
|
-
type: "if-break",
|
|
156
|
-
breakContents,
|
|
157
|
-
flatContents,
|
|
158
|
-
groupId: opts.groupId
|
|
159
|
-
};
|
|
160
1005
|
}
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
type: "indent-if-break",
|
|
164
|
-
contents,
|
|
165
|
-
groupId: opts.groupId,
|
|
166
|
-
negate: opts.negate
|
|
167
|
-
};
|
|
1006
|
+
if (doc2.id) {
|
|
1007
|
+
groupModeMap[doc2.id] = get_last_default(cmds).mode;
|
|
168
1008
|
}
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
contents
|
|
176
|
-
};
|
|
1009
|
+
break;
|
|
1010
|
+
case DOC_TYPE_FILL: {
|
|
1011
|
+
const rem = width - pos;
|
|
1012
|
+
const { parts } = doc2;
|
|
1013
|
+
if (parts.length === 0) {
|
|
1014
|
+
break;
|
|
177
1015
|
}
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
};
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
hard: true,
|
|
194
|
-
literal: true
|
|
195
|
-
};
|
|
196
|
-
var line = {
|
|
197
|
-
type: "line"
|
|
198
|
-
};
|
|
199
|
-
var softline = {
|
|
200
|
-
type: "line",
|
|
201
|
-
soft: true
|
|
202
|
-
};
|
|
203
|
-
var hardline = concat([hardlineWithoutBreakParent, breakParent]);
|
|
204
|
-
var literalline = concat([literallineWithoutBreakParent, breakParent]);
|
|
205
|
-
var cursor = {
|
|
206
|
-
type: "cursor",
|
|
207
|
-
placeholder: Symbol("cursor")
|
|
208
|
-
};
|
|
209
|
-
function join(sep, arr) {
|
|
210
|
-
const res = [];
|
|
211
|
-
for (let i = 0; i < arr.length; i++) {
|
|
212
|
-
if (i !== 0) {
|
|
213
|
-
res.push(sep);
|
|
214
|
-
}
|
|
215
|
-
res.push(arr[i]);
|
|
1016
|
+
const [content, whitespace] = parts;
|
|
1017
|
+
const contentFlatCmd = { ind, mode: MODE_FLAT, doc: content };
|
|
1018
|
+
const contentBreakCmd = { ind, mode: MODE_BREAK, doc: content };
|
|
1019
|
+
const contentFits = fits(
|
|
1020
|
+
contentFlatCmd,
|
|
1021
|
+
[],
|
|
1022
|
+
rem,
|
|
1023
|
+
lineSuffix2.length > 0,
|
|
1024
|
+
true
|
|
1025
|
+
);
|
|
1026
|
+
if (parts.length === 1) {
|
|
1027
|
+
if (contentFits) {
|
|
1028
|
+
cmds.push(contentFlatCmd);
|
|
1029
|
+
} else {
|
|
1030
|
+
cmds.push(contentBreakCmd);
|
|
216
1031
|
}
|
|
217
|
-
|
|
1032
|
+
break;
|
|
218
1033
|
}
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
aligned = align(Number.NEGATIVE_INFINITY, aligned);
|
|
1034
|
+
const whitespaceFlatCmd = { ind, mode: MODE_FLAT, doc: whitespace };
|
|
1035
|
+
const whitespaceBreakCmd = { ind, mode: MODE_BREAK, doc: whitespace };
|
|
1036
|
+
if (parts.length === 2) {
|
|
1037
|
+
if (contentFits) {
|
|
1038
|
+
cmds.push(whitespaceFlatCmd, contentFlatCmd);
|
|
1039
|
+
} else {
|
|
1040
|
+
cmds.push(whitespaceBreakCmd, contentBreakCmd);
|
|
227
1041
|
}
|
|
228
|
-
|
|
229
|
-
}
|
|
230
|
-
function label(label2, contents) {
|
|
231
|
-
return {
|
|
232
|
-
type: "label",
|
|
233
|
-
label: label2,
|
|
234
|
-
contents
|
|
235
|
-
};
|
|
1042
|
+
break;
|
|
236
1043
|
}
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
group,
|
|
245
|
-
conditionalGroup,
|
|
246
|
-
fill,
|
|
247
|
-
lineSuffix,
|
|
248
|
-
lineSuffixBoundary,
|
|
249
|
-
cursor,
|
|
250
|
-
breakParent,
|
|
251
|
-
ifBreak,
|
|
252
|
-
trim,
|
|
253
|
-
indent,
|
|
254
|
-
indentIfBreak,
|
|
255
|
-
align,
|
|
256
|
-
addAlignmentToDoc,
|
|
257
|
-
markAsRoot,
|
|
258
|
-
dedentToRoot,
|
|
259
|
-
dedent,
|
|
260
|
-
hardlineWithoutBreakParent,
|
|
261
|
-
literallineWithoutBreakParent,
|
|
262
|
-
label
|
|
1044
|
+
parts.splice(0, 2);
|
|
1045
|
+
const remainingCmd = { ind, mode, doc: fill(parts) };
|
|
1046
|
+
const secondContent = parts[0];
|
|
1047
|
+
const firstAndSecondContentFlatCmd = {
|
|
1048
|
+
ind,
|
|
1049
|
+
mode: MODE_FLAT,
|
|
1050
|
+
doc: [content, whitespace, secondContent]
|
|
263
1051
|
};
|
|
1052
|
+
const firstAndSecondContentFits = fits(
|
|
1053
|
+
firstAndSecondContentFlatCmd,
|
|
1054
|
+
[],
|
|
1055
|
+
rem,
|
|
1056
|
+
lineSuffix2.length > 0,
|
|
1057
|
+
true
|
|
1058
|
+
);
|
|
1059
|
+
if (firstAndSecondContentFits) {
|
|
1060
|
+
cmds.push(remainingCmd, whitespaceFlatCmd, contentFlatCmd);
|
|
1061
|
+
} else if (contentFits) {
|
|
1062
|
+
cmds.push(remainingCmd, whitespaceBreakCmd, contentFlatCmd);
|
|
1063
|
+
} else {
|
|
1064
|
+
cmds.push(remainingCmd, whitespaceBreakCmd, contentBreakCmd);
|
|
1065
|
+
}
|
|
1066
|
+
break;
|
|
264
1067
|
}
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
if (index >= 0) {
|
|
273
|
-
return text.charAt(index + 1) === "\n" ? "crlf" : "cr";
|
|
1068
|
+
case DOC_TYPE_IF_BREAK:
|
|
1069
|
+
case DOC_TYPE_INDENT_IF_BREAK: {
|
|
1070
|
+
const groupMode = doc2.groupId ? groupModeMap[doc2.groupId] : mode;
|
|
1071
|
+
if (groupMode === MODE_BREAK) {
|
|
1072
|
+
const breakContents = doc2.type === DOC_TYPE_IF_BREAK ? doc2.breakContents : doc2.negate ? doc2.contents : indent(doc2.contents);
|
|
1073
|
+
if (breakContents) {
|
|
1074
|
+
cmds.push({ ind, mode, doc: breakContents });
|
|
274
1075
|
}
|
|
275
|
-
return "lf";
|
|
276
1076
|
}
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
case "crlf":
|
|
282
|
-
return "\r\n";
|
|
283
|
-
default:
|
|
284
|
-
return "\n";
|
|
1077
|
+
if (groupMode === MODE_FLAT) {
|
|
1078
|
+
const flatContents = doc2.type === DOC_TYPE_IF_BREAK ? doc2.flatContents : doc2.negate ? indent(doc2.contents) : doc2.contents;
|
|
1079
|
+
if (flatContents) {
|
|
1080
|
+
cmds.push({ ind, mode, doc: flatContents });
|
|
285
1081
|
}
|
|
286
1082
|
}
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
1083
|
+
break;
|
|
1084
|
+
}
|
|
1085
|
+
case DOC_TYPE_LINE_SUFFIX:
|
|
1086
|
+
lineSuffix2.push({ ind, mode, doc: doc2.contents });
|
|
1087
|
+
break;
|
|
1088
|
+
case DOC_TYPE_LINE_SUFFIX_BOUNDARY:
|
|
1089
|
+
if (lineSuffix2.length > 0) {
|
|
1090
|
+
cmds.push({ ind, mode, doc: hardlineWithoutBreakParent });
|
|
1091
|
+
}
|
|
1092
|
+
break;
|
|
1093
|
+
case DOC_TYPE_LINE:
|
|
1094
|
+
switch (mode) {
|
|
1095
|
+
case MODE_FLAT:
|
|
1096
|
+
if (!doc2.hard) {
|
|
1097
|
+
if (!doc2.soft) {
|
|
1098
|
+
out.push(" ");
|
|
1099
|
+
pos += 1;
|
|
1100
|
+
}
|
|
295
1101
|
break;
|
|
296
|
-
|
|
297
|
-
|
|
1102
|
+
} else {
|
|
1103
|
+
shouldRemeasure = true;
|
|
1104
|
+
}
|
|
1105
|
+
case MODE_BREAK:
|
|
1106
|
+
if (lineSuffix2.length > 0) {
|
|
1107
|
+
cmds.push({ ind, mode, doc: doc2 }, ...lineSuffix2.reverse());
|
|
1108
|
+
lineSuffix2.length = 0;
|
|
298
1109
|
break;
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
1110
|
+
}
|
|
1111
|
+
if (doc2.literal) {
|
|
1112
|
+
if (ind.root) {
|
|
1113
|
+
out.push(newLine, ind.root.value);
|
|
1114
|
+
pos = ind.root.length;
|
|
1115
|
+
} else {
|
|
1116
|
+
out.push(newLine);
|
|
1117
|
+
pos = 0;
|
|
1118
|
+
}
|
|
1119
|
+
} else {
|
|
1120
|
+
pos -= trim2(out);
|
|
1121
|
+
out.push(newLine + ind.value);
|
|
1122
|
+
pos = ind.length;
|
|
1123
|
+
}
|
|
1124
|
+
break;
|
|
304
1125
|
}
|
|
305
|
-
|
|
306
|
-
|
|
1126
|
+
break;
|
|
1127
|
+
case DOC_TYPE_LABEL:
|
|
1128
|
+
cmds.push({ ind, mode, doc: doc2.contents });
|
|
1129
|
+
break;
|
|
1130
|
+
case DOC_TYPE_BREAK_PARENT:
|
|
1131
|
+
break;
|
|
1132
|
+
default:
|
|
1133
|
+
throw new invalid_doc_error_default(doc2);
|
|
1134
|
+
}
|
|
1135
|
+
if (cmds.length === 0 && lineSuffix2.length > 0) {
|
|
1136
|
+
cmds.push(...lineSuffix2.reverse());
|
|
1137
|
+
lineSuffix2.length = 0;
|
|
1138
|
+
}
|
|
1139
|
+
}
|
|
1140
|
+
const cursorPlaceholderIndex = out.indexOf(cursor.placeholder);
|
|
1141
|
+
if (cursorPlaceholderIndex !== -1) {
|
|
1142
|
+
const otherCursorPlaceholderIndex = out.indexOf(
|
|
1143
|
+
cursor.placeholder,
|
|
1144
|
+
cursorPlaceholderIndex + 1
|
|
1145
|
+
);
|
|
1146
|
+
const beforeCursor = out.slice(0, cursorPlaceholderIndex).join("");
|
|
1147
|
+
const aroundCursor = out.slice(cursorPlaceholderIndex + 1, otherCursorPlaceholderIndex).join("");
|
|
1148
|
+
const afterCursor = out.slice(otherCursorPlaceholderIndex + 1).join("");
|
|
1149
|
+
return {
|
|
1150
|
+
formatted: beforeCursor + aroundCursor + afterCursor,
|
|
1151
|
+
cursorNodeStart: beforeCursor.length,
|
|
1152
|
+
cursorNodeText: aroundCursor
|
|
1153
|
+
};
|
|
1154
|
+
}
|
|
1155
|
+
return { formatted: out.join("") };
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
// src/document/debug.js
|
|
1159
|
+
var debug_exports = {};
|
|
1160
|
+
__export(debug_exports, {
|
|
1161
|
+
printDocToDebug: () => printDocToDebug
|
|
1162
|
+
});
|
|
1163
|
+
init_define_process();
|
|
1164
|
+
function flattenDoc(doc) {
|
|
1165
|
+
if (!doc) {
|
|
1166
|
+
return "";
|
|
1167
|
+
}
|
|
1168
|
+
if (Array.isArray(doc)) {
|
|
1169
|
+
const res = [];
|
|
1170
|
+
for (const part of doc) {
|
|
1171
|
+
if (Array.isArray(part)) {
|
|
1172
|
+
res.push(...flattenDoc(part));
|
|
1173
|
+
} else {
|
|
1174
|
+
const flattened = flattenDoc(part);
|
|
1175
|
+
if (flattened !== "") {
|
|
1176
|
+
res.push(flattened);
|
|
307
1177
|
}
|
|
308
|
-
module2.exports = {
|
|
309
|
-
guessEndOfLine,
|
|
310
|
-
convertEndOfLineToChars,
|
|
311
|
-
countEndOfLineChars,
|
|
312
|
-
normalizeEndOfLine
|
|
313
|
-
};
|
|
314
1178
|
}
|
|
315
|
-
});
|
|
316
|
-
var require_get_last = __commonJS2({
|
|
317
|
-
"src/utils/get-last.js"(exports2, module2) {
|
|
318
|
-
"use strict";
|
|
319
|
-
init_define_process();
|
|
320
|
-
var getLast = (arr) => arr[arr.length - 1];
|
|
321
|
-
module2.exports = getLast;
|
|
322
|
-
}
|
|
323
|
-
});
|
|
324
|
-
function ansiRegex() {
|
|
325
|
-
let {
|
|
326
|
-
onlyFirst = false
|
|
327
|
-
} = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
|
|
328
|
-
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("|");
|
|
329
|
-
return new RegExp(pattern, onlyFirst ? void 0 : "g");
|
|
330
1179
|
}
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
1180
|
+
return res;
|
|
1181
|
+
}
|
|
1182
|
+
if (doc.type === DOC_TYPE_IF_BREAK) {
|
|
1183
|
+
return {
|
|
1184
|
+
...doc,
|
|
1185
|
+
breakContents: flattenDoc(doc.breakContents),
|
|
1186
|
+
flatContents: flattenDoc(doc.flatContents)
|
|
1187
|
+
};
|
|
1188
|
+
}
|
|
1189
|
+
if (doc.type === DOC_TYPE_GROUP) {
|
|
1190
|
+
return {
|
|
1191
|
+
...doc,
|
|
1192
|
+
contents: flattenDoc(doc.contents),
|
|
1193
|
+
expandedStates: doc.expandedStates && doc.expandedStates.map(flattenDoc)
|
|
1194
|
+
};
|
|
1195
|
+
}
|
|
1196
|
+
if (doc.type === DOC_TYPE_FILL) {
|
|
1197
|
+
return { type: "fill", parts: doc.parts.map(flattenDoc) };
|
|
1198
|
+
}
|
|
1199
|
+
if (doc.contents) {
|
|
1200
|
+
return { ...doc, contents: flattenDoc(doc.contents) };
|
|
1201
|
+
}
|
|
1202
|
+
return doc;
|
|
1203
|
+
}
|
|
1204
|
+
function printDocToDebug(doc) {
|
|
1205
|
+
const printedSymbols = /* @__PURE__ */ Object.create(null);
|
|
1206
|
+
const usedKeysForSymbols = /* @__PURE__ */ new Set();
|
|
1207
|
+
return printDoc(flattenDoc(doc));
|
|
1208
|
+
function printDoc(doc2, index, parentParts) {
|
|
1209
|
+
if (typeof doc2 === "string") {
|
|
1210
|
+
return JSON.stringify(doc2);
|
|
341
1211
|
}
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
init_ansi_regex();
|
|
346
|
-
}
|
|
347
|
-
});
|
|
348
|
-
function isFullwidthCodePoint(codePoint) {
|
|
349
|
-
if (!Number.isInteger(codePoint)) {
|
|
350
|
-
return false;
|
|
351
|
-
}
|
|
352
|
-
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);
|
|
1212
|
+
if (Array.isArray(doc2)) {
|
|
1213
|
+
const printed = doc2.map(printDoc).filter(Boolean);
|
|
1214
|
+
return printed.length === 1 ? printed[0] : `[${printed.join(", ")}]`;
|
|
353
1215
|
}
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
1216
|
+
if (doc2.type === DOC_TYPE_LINE) {
|
|
1217
|
+
const withBreakParent = Array.isArray(parentParts) && parentParts[index + 1] && parentParts[index + 1].type === DOC_TYPE_BREAK_PARENT;
|
|
1218
|
+
if (doc2.literal) {
|
|
1219
|
+
return withBreakParent ? "literalline" : "literallineWithoutBreakParent";
|
|
357
1220
|
}
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
"node_modules/emoji-regex/index.js"(exports2, module2) {
|
|
361
|
-
"use strict";
|
|
362
|
-
init_define_process();
|
|
363
|
-
module2.exports = function() {
|
|
364
|
-
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-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83E\uDDD1(?:\u200D(?:\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D[\uDC66\uDC67])|\uD83D\uDC69\u200D\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D\uDC41\uFE0F\u200D\uD83D\uDDE8|\uD83E\uDDD1(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|\uD83D\uDC69(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|\uD83D\uDE36\u200D\uD83C\uDF2B|\uD83C\uDFF3\uFE0F\u200D\u26A7|\uD83D\uDC3B\u200D\u2744|(?:(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF])\u200D[\u2640\u2642]|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|\uD83C\uDFF4\u200D\u2620|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])\u200D[\u2640\u2642]|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u2600-\u2604\u260E\u2611\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26B0\u26B1\u26C8\u26CF\u26D1\u26D3\u26E9\u26F0\u26F1\u26F4\u26F7\u26F8\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u3030\u303D\u3297\u3299]|\uD83C[\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]|\uD83D[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3])\uFE0F|\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08|\uD83D\uDC69\u200D\uD83D\uDC67|\uD83D\uDC69\u200D\uD83D\uDC66|\uD83D\uDE35\u200D\uD83D\uDCAB|\uD83D\uDE2E\u200D\uD83D\uDCA8|\uD83D\uDC15\u200D\uD83E\uDDBA|\uD83E\uDDD1(?:\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC|\uD83C\uDFFB)?|\uD83D\uDC69(?:\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC|\uD83C\uDFFB)?|\uD83C\uDDFD\uD83C\uDDF0|\uD83C\uDDF6\uD83C\uDDE6|\uD83C\uDDF4\uD83C\uDDF2|\uD83D\uDC08\u200D\u2B1B|\u2764\uFE0F\u200D(?:\uD83D\uDD25|\uD83E\uDE79)|\uD83D\uDC41\uFE0F|\uD83C\uDFF3\uFE0F|\uD83C\uDDFF(?:\uD83C[\uDDE6\uDDF2\uDDFC])|\uD83C\uDDFE(?:\uD83C[\uDDEA\uDDF9])|\uD83C\uDDFC(?:\uD83C[\uDDEB\uDDF8])|\uD83C\uDDFB(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA])|\uD83C\uDDFA(?:\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF])|\uD83C\uDDF9(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF])|\uD83C\uDDF8(?:\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF])|\uD83C\uDDF7(?:\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC])|\uD83C\uDDF5(?:\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE])|\uD83C\uDDF3(?:\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF])|\uD83C\uDDF2(?:\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF])|\uD83C\uDDF1(?:\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE])|\uD83C\uDDF0(?:\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF])|\uD83C\uDDEF(?:\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5])|\uD83C\uDDEE(?:\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9])|\uD83C\uDDED(?:\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA])|\uD83C\uDDEC(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE])|\uD83C\uDDEB(?:\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7])|\uD83C\uDDEA(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA])|\uD83C\uDDE9(?:\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF])|\uD83C\uDDE8(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF])|\uD83C\uDDE7(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF])|\uD83C\uDDE6(?:\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF])|[#\*0-9]\uFE0F\u20E3|\u2764\uFE0F|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])|\uD83C\uDFF4|(?:[\u270A\u270B]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5])(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u261D\u270C\u270D]|\uD83D[\uDD74\uDD90])(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])|[\u270A\u270B]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC08\uDC15\uDC3B\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE2E\uDE35\uDE36\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5]|\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD]|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF]|[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0D\uDD0E\uDD10-\uDD17\uDD1D\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78\uDD7A-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCB\uDDD0\uDDE0-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6]|(?:[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u270A\u270B\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF93\uDFA0-\uDFCA\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF4\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC3E\uDC40\uDC42-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDD7A\uDD95\uDD96\uDDA4\uDDFB-\uDE4F\uDE80-\uDEC5\uDECC\uDED0-\uDED2\uDED5-\uDED7\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0C-\uDD3A\uDD3C-\uDD45\uDD47-\uDD78\uDD7A-\uDDCB\uDDCD-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6])|(?:[#\*0-9\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692-\u2697\u2699\u269B\u269C\u26A0\u26A1\u26A7\u26AA\u26AB\u26B0\u26B1\u26BD\u26BE\u26C4\u26C5\u26C8\u26CE\u26CF\u26D1\u26D3\u26D4\u26E9\u26EA\u26F0-\u26F5\u26F7-\u26FA\u26FD\u2702\u2705\u2708-\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763\u2764\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299]|\uD83C[\uDC04\uDCCF\uDD70\uDD71\uDD7E\uDD7F\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE02\uDE1A\uDE2F\uDE32-\uDE3A\uDE50\uDE51\uDF00-\uDF21\uDF24-\uDF93\uDF96\uDF97\uDF99-\uDF9B\uDF9E-\uDFF0\uDFF3-\uDFF5\uDFF7-\uDFFF]|\uD83D[\uDC00-\uDCFD\uDCFF-\uDD3D\uDD49-\uDD4E\uDD50-\uDD67\uDD6F\uDD70\uDD73-\uDD7A\uDD87\uDD8A-\uDD8D\uDD90\uDD95\uDD96\uDDA4\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA-\uDE4F\uDE80-\uDEC5\uDECB-\uDED2\uDED5-\uDED7\uDEE0-\uDEE5\uDEE9\uDEEB\uDEEC\uDEF0\uDEF3-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0C-\uDD3A\uDD3C-\uDD45\uDD47-\uDD78\uDD7A-\uDDCB\uDDCD-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6])\uFE0F|(?:[\u261D\u26F9\u270A-\u270D]|\uD83C[\uDF85\uDFC2-\uDFC4\uDFC7\uDFCA-\uDFCC]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66-\uDC78\uDC7C\uDC81-\uDC83\uDC85-\uDC87\uDC8F\uDC91\uDCAA\uDD74\uDD75\uDD7A\uDD90\uDD95\uDD96\uDE45-\uDE47\uDE4B-\uDE4F\uDEA3\uDEB4-\uDEB6\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1F\uDD26\uDD30-\uDD39\uDD3C-\uDD3E\uDD77\uDDB5\uDDB6\uDDB8\uDDB9\uDDBB\uDDCD-\uDDCF\uDDD1-\uDDDD])/g;
|
|
365
|
-
};
|
|
1221
|
+
if (doc2.hard) {
|
|
1222
|
+
return withBreakParent ? "hardline" : "hardlineWithoutBreakParent";
|
|
366
1223
|
}
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
__export(string_width_exports, {
|
|
370
|
-
default: () => stringWidth
|
|
371
|
-
});
|
|
372
|
-
function stringWidth(string) {
|
|
373
|
-
if (typeof string !== "string" || string.length === 0) {
|
|
374
|
-
return 0;
|
|
1224
|
+
if (doc2.soft) {
|
|
1225
|
+
return "softline";
|
|
375
1226
|
}
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
1227
|
+
return "line";
|
|
1228
|
+
}
|
|
1229
|
+
if (doc2.type === DOC_TYPE_BREAK_PARENT) {
|
|
1230
|
+
const afterHardline = Array.isArray(parentParts) && parentParts[index - 1] && parentParts[index - 1].type === DOC_TYPE_LINE && parentParts[index - 1].hard;
|
|
1231
|
+
return afterHardline ? void 0 : "breakParent";
|
|
1232
|
+
}
|
|
1233
|
+
if (doc2.type === DOC_TYPE_TRIM) {
|
|
1234
|
+
return "trim";
|
|
1235
|
+
}
|
|
1236
|
+
if (doc2.type === DOC_TYPE_INDENT) {
|
|
1237
|
+
return "indent(" + printDoc(doc2.contents) + ")";
|
|
1238
|
+
}
|
|
1239
|
+
if (doc2.type === DOC_TYPE_ALIGN) {
|
|
1240
|
+
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) + ")";
|
|
1241
|
+
}
|
|
1242
|
+
if (doc2.type === DOC_TYPE_IF_BREAK) {
|
|
1243
|
+
return "ifBreak(" + printDoc(doc2.breakContents) + (doc2.flatContents ? ", " + printDoc(doc2.flatContents) : "") + (doc2.groupId ? (!doc2.flatContents ? ', ""' : "") + `, { groupId: ${printGroupId(doc2.groupId)} }` : "") + ")";
|
|
1244
|
+
}
|
|
1245
|
+
if (doc2.type === DOC_TYPE_INDENT_IF_BREAK) {
|
|
1246
|
+
const optionsParts = [];
|
|
1247
|
+
if (doc2.negate) {
|
|
1248
|
+
optionsParts.push("negate: true");
|
|
379
1249
|
}
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
for (let index = 0; index < string.length; index++) {
|
|
383
|
-
const codePoint = string.codePointAt(index);
|
|
384
|
-
if (codePoint <= 31 || codePoint >= 127 && codePoint <= 159) {
|
|
385
|
-
continue;
|
|
386
|
-
}
|
|
387
|
-
if (codePoint >= 768 && codePoint <= 879) {
|
|
388
|
-
continue;
|
|
389
|
-
}
|
|
390
|
-
if (codePoint > 65535) {
|
|
391
|
-
index++;
|
|
392
|
-
}
|
|
393
|
-
width += isFullwidthCodePoint(codePoint) ? 2 : 1;
|
|
1250
|
+
if (doc2.groupId) {
|
|
1251
|
+
optionsParts.push(`groupId: ${printGroupId(doc2.groupId)}`);
|
|
394
1252
|
}
|
|
395
|
-
|
|
1253
|
+
const options = optionsParts.length > 0 ? `, { ${optionsParts.join(", ")} }` : "";
|
|
1254
|
+
return `indentIfBreak(${printDoc(doc2.contents)}${options})`;
|
|
396
1255
|
}
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
init_strip_ansi();
|
|
402
|
-
init_is_fullwidth_code_point();
|
|
403
|
-
import_emoji_regex = __toESM(require_emoji_regex());
|
|
1256
|
+
if (doc2.type === DOC_TYPE_GROUP) {
|
|
1257
|
+
const optionsParts = [];
|
|
1258
|
+
if (doc2.break && doc2.break !== "propagated") {
|
|
1259
|
+
optionsParts.push("shouldBreak: true");
|
|
404
1260
|
}
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
"src/utils/get-string-width.js"(exports2, module2) {
|
|
408
|
-
"use strict";
|
|
409
|
-
init_define_process();
|
|
410
|
-
var stringWidth2 = (init_string_width(), __toCommonJS(string_width_exports)).default;
|
|
411
|
-
var notAsciiRegex = /[^\x20-\x7F]/;
|
|
412
|
-
function getStringWidth(text) {
|
|
413
|
-
if (!text) {
|
|
414
|
-
return 0;
|
|
415
|
-
}
|
|
416
|
-
if (!notAsciiRegex.test(text)) {
|
|
417
|
-
return text.length;
|
|
418
|
-
}
|
|
419
|
-
return stringWidth2(text);
|
|
420
|
-
}
|
|
421
|
-
module2.exports = getStringWidth;
|
|
1261
|
+
if (doc2.id) {
|
|
1262
|
+
optionsParts.push(`id: ${printGroupId(doc2.id)}`);
|
|
422
1263
|
}
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
"use strict";
|
|
427
|
-
init_define_process();
|
|
428
|
-
var getLast = require_get_last();
|
|
429
|
-
var {
|
|
430
|
-
literalline,
|
|
431
|
-
join
|
|
432
|
-
} = require_doc_builders();
|
|
433
|
-
var isConcat = (doc) => Array.isArray(doc) || doc && doc.type === "concat";
|
|
434
|
-
var getDocParts = (doc) => {
|
|
435
|
-
if (Array.isArray(doc)) {
|
|
436
|
-
return doc;
|
|
437
|
-
}
|
|
438
|
-
if (doc.type !== "concat" && doc.type !== "fill") {
|
|
439
|
-
throw new Error("Expect doc type to be `concat` or `fill`.");
|
|
440
|
-
}
|
|
441
|
-
return doc.parts;
|
|
442
|
-
};
|
|
443
|
-
var traverseDocOnExitStackMarker = {};
|
|
444
|
-
function traverseDoc(doc, onEnter, onExit, shouldTraverseConditionalGroups) {
|
|
445
|
-
const docsStack = [doc];
|
|
446
|
-
while (docsStack.length > 0) {
|
|
447
|
-
const doc2 = docsStack.pop();
|
|
448
|
-
if (doc2 === traverseDocOnExitStackMarker) {
|
|
449
|
-
onExit(docsStack.pop());
|
|
450
|
-
continue;
|
|
451
|
-
}
|
|
452
|
-
if (onExit) {
|
|
453
|
-
docsStack.push(doc2, traverseDocOnExitStackMarker);
|
|
454
|
-
}
|
|
455
|
-
if (!onEnter || onEnter(doc2) !== false) {
|
|
456
|
-
if (isConcat(doc2) || doc2.type === "fill") {
|
|
457
|
-
const parts = getDocParts(doc2);
|
|
458
|
-
for (let ic = parts.length, i = ic - 1; i >= 0; --i) {
|
|
459
|
-
docsStack.push(parts[i]);
|
|
460
|
-
}
|
|
461
|
-
} else if (doc2.type === "if-break") {
|
|
462
|
-
if (doc2.flatContents) {
|
|
463
|
-
docsStack.push(doc2.flatContents);
|
|
464
|
-
}
|
|
465
|
-
if (doc2.breakContents) {
|
|
466
|
-
docsStack.push(doc2.breakContents);
|
|
467
|
-
}
|
|
468
|
-
} else if (doc2.type === "group" && doc2.expandedStates) {
|
|
469
|
-
if (shouldTraverseConditionalGroups) {
|
|
470
|
-
for (let ic = doc2.expandedStates.length, i = ic - 1; i >= 0; --i) {
|
|
471
|
-
docsStack.push(doc2.expandedStates[i]);
|
|
472
|
-
}
|
|
473
|
-
} else {
|
|
474
|
-
docsStack.push(doc2.contents);
|
|
475
|
-
}
|
|
476
|
-
} else if (doc2.contents) {
|
|
477
|
-
docsStack.push(doc2.contents);
|
|
478
|
-
}
|
|
479
|
-
}
|
|
480
|
-
}
|
|
481
|
-
}
|
|
482
|
-
function mapDoc(doc, cb) {
|
|
483
|
-
const mapped = /* @__PURE__ */ new Map();
|
|
484
|
-
return rec(doc);
|
|
485
|
-
function rec(doc2) {
|
|
486
|
-
if (mapped.has(doc2)) {
|
|
487
|
-
return mapped.get(doc2);
|
|
488
|
-
}
|
|
489
|
-
const result = process2(doc2);
|
|
490
|
-
mapped.set(doc2, result);
|
|
491
|
-
return result;
|
|
492
|
-
}
|
|
493
|
-
function process2(doc2) {
|
|
494
|
-
if (Array.isArray(doc2)) {
|
|
495
|
-
return cb(doc2.map(rec));
|
|
496
|
-
}
|
|
497
|
-
if (doc2.type === "concat" || doc2.type === "fill") {
|
|
498
|
-
const parts = doc2.parts.map(rec);
|
|
499
|
-
return cb(Object.assign(Object.assign({}, doc2), {}, {
|
|
500
|
-
parts
|
|
501
|
-
}));
|
|
502
|
-
}
|
|
503
|
-
if (doc2.type === "if-break") {
|
|
504
|
-
const breakContents = doc2.breakContents && rec(doc2.breakContents);
|
|
505
|
-
const flatContents = doc2.flatContents && rec(doc2.flatContents);
|
|
506
|
-
return cb(Object.assign(Object.assign({}, doc2), {}, {
|
|
507
|
-
breakContents,
|
|
508
|
-
flatContents
|
|
509
|
-
}));
|
|
510
|
-
}
|
|
511
|
-
if (doc2.type === "group" && doc2.expandedStates) {
|
|
512
|
-
const expandedStates = doc2.expandedStates.map(rec);
|
|
513
|
-
const contents = expandedStates[0];
|
|
514
|
-
return cb(Object.assign(Object.assign({}, doc2), {}, {
|
|
515
|
-
contents,
|
|
516
|
-
expandedStates
|
|
517
|
-
}));
|
|
518
|
-
}
|
|
519
|
-
if (doc2.contents) {
|
|
520
|
-
const contents = rec(doc2.contents);
|
|
521
|
-
return cb(Object.assign(Object.assign({}, doc2), {}, {
|
|
522
|
-
contents
|
|
523
|
-
}));
|
|
524
|
-
}
|
|
525
|
-
return cb(doc2);
|
|
526
|
-
}
|
|
527
|
-
}
|
|
528
|
-
function findInDoc(doc, fn, defaultValue) {
|
|
529
|
-
let result = defaultValue;
|
|
530
|
-
let hasStopped = false;
|
|
531
|
-
function findInDocOnEnterFn(doc2) {
|
|
532
|
-
const maybeResult = fn(doc2);
|
|
533
|
-
if (maybeResult !== void 0) {
|
|
534
|
-
hasStopped = true;
|
|
535
|
-
result = maybeResult;
|
|
536
|
-
}
|
|
537
|
-
if (hasStopped) {
|
|
538
|
-
return false;
|
|
539
|
-
}
|
|
540
|
-
}
|
|
541
|
-
traverseDoc(doc, findInDocOnEnterFn);
|
|
542
|
-
return result;
|
|
543
|
-
}
|
|
544
|
-
function willBreakFn(doc) {
|
|
545
|
-
if (doc.type === "group" && doc.break) {
|
|
546
|
-
return true;
|
|
547
|
-
}
|
|
548
|
-
if (doc.type === "line" && doc.hard) {
|
|
549
|
-
return true;
|
|
550
|
-
}
|
|
551
|
-
if (doc.type === "break-parent") {
|
|
552
|
-
return true;
|
|
553
|
-
}
|
|
554
|
-
}
|
|
555
|
-
function willBreak(doc) {
|
|
556
|
-
return findInDoc(doc, willBreakFn, false);
|
|
557
|
-
}
|
|
558
|
-
function breakParentGroup(groupStack) {
|
|
559
|
-
if (groupStack.length > 0) {
|
|
560
|
-
const parentGroup = getLast(groupStack);
|
|
561
|
-
if (!parentGroup.expandedStates && !parentGroup.break) {
|
|
562
|
-
parentGroup.break = "propagated";
|
|
563
|
-
}
|
|
564
|
-
}
|
|
565
|
-
return null;
|
|
566
|
-
}
|
|
567
|
-
function propagateBreaks(doc) {
|
|
568
|
-
const alreadyVisitedSet = /* @__PURE__ */ new Set();
|
|
569
|
-
const groupStack = [];
|
|
570
|
-
function propagateBreaksOnEnterFn(doc2) {
|
|
571
|
-
if (doc2.type === "break-parent") {
|
|
572
|
-
breakParentGroup(groupStack);
|
|
573
|
-
}
|
|
574
|
-
if (doc2.type === "group") {
|
|
575
|
-
groupStack.push(doc2);
|
|
576
|
-
if (alreadyVisitedSet.has(doc2)) {
|
|
577
|
-
return false;
|
|
578
|
-
}
|
|
579
|
-
alreadyVisitedSet.add(doc2);
|
|
580
|
-
}
|
|
581
|
-
}
|
|
582
|
-
function propagateBreaksOnExitFn(doc2) {
|
|
583
|
-
if (doc2.type === "group") {
|
|
584
|
-
const group = groupStack.pop();
|
|
585
|
-
if (group.break) {
|
|
586
|
-
breakParentGroup(groupStack);
|
|
587
|
-
}
|
|
588
|
-
}
|
|
589
|
-
}
|
|
590
|
-
traverseDoc(doc, propagateBreaksOnEnterFn, propagateBreaksOnExitFn, true);
|
|
591
|
-
}
|
|
592
|
-
function removeLinesFn(doc) {
|
|
593
|
-
if (doc.type === "line" && !doc.hard) {
|
|
594
|
-
return doc.soft ? "" : " ";
|
|
595
|
-
}
|
|
596
|
-
if (doc.type === "if-break") {
|
|
597
|
-
return doc.flatContents || "";
|
|
598
|
-
}
|
|
599
|
-
return doc;
|
|
600
|
-
}
|
|
601
|
-
function removeLines(doc) {
|
|
602
|
-
return mapDoc(doc, removeLinesFn);
|
|
603
|
-
}
|
|
604
|
-
var isHardline = (doc, nextDoc) => doc && doc.type === "line" && doc.hard && nextDoc && nextDoc.type === "break-parent";
|
|
605
|
-
function stripDocTrailingHardlineFromDoc(doc) {
|
|
606
|
-
if (!doc) {
|
|
607
|
-
return doc;
|
|
608
|
-
}
|
|
609
|
-
if (isConcat(doc) || doc.type === "fill") {
|
|
610
|
-
const parts = getDocParts(doc);
|
|
611
|
-
while (parts.length > 1 && isHardline(...parts.slice(-2))) {
|
|
612
|
-
parts.length -= 2;
|
|
613
|
-
}
|
|
614
|
-
if (parts.length > 0) {
|
|
615
|
-
const lastPart = stripDocTrailingHardlineFromDoc(getLast(parts));
|
|
616
|
-
parts[parts.length - 1] = lastPart;
|
|
617
|
-
}
|
|
618
|
-
return Array.isArray(doc) ? parts : Object.assign(Object.assign({}, doc), {}, {
|
|
619
|
-
parts
|
|
620
|
-
});
|
|
621
|
-
}
|
|
622
|
-
switch (doc.type) {
|
|
623
|
-
case "align":
|
|
624
|
-
case "indent":
|
|
625
|
-
case "indent-if-break":
|
|
626
|
-
case "group":
|
|
627
|
-
case "line-suffix":
|
|
628
|
-
case "label": {
|
|
629
|
-
const contents = stripDocTrailingHardlineFromDoc(doc.contents);
|
|
630
|
-
return Object.assign(Object.assign({}, doc), {}, {
|
|
631
|
-
contents
|
|
632
|
-
});
|
|
633
|
-
}
|
|
634
|
-
case "if-break": {
|
|
635
|
-
const breakContents = stripDocTrailingHardlineFromDoc(doc.breakContents);
|
|
636
|
-
const flatContents = stripDocTrailingHardlineFromDoc(doc.flatContents);
|
|
637
|
-
return Object.assign(Object.assign({}, doc), {}, {
|
|
638
|
-
breakContents,
|
|
639
|
-
flatContents
|
|
640
|
-
});
|
|
641
|
-
}
|
|
642
|
-
}
|
|
643
|
-
return doc;
|
|
644
|
-
}
|
|
645
|
-
function stripTrailingHardline(doc) {
|
|
646
|
-
return stripDocTrailingHardlineFromDoc(cleanDoc(doc));
|
|
647
|
-
}
|
|
648
|
-
function cleanDocFn(doc) {
|
|
649
|
-
switch (doc.type) {
|
|
650
|
-
case "fill":
|
|
651
|
-
if (doc.parts.every((part) => part === "")) {
|
|
652
|
-
return "";
|
|
653
|
-
}
|
|
654
|
-
break;
|
|
655
|
-
case "group":
|
|
656
|
-
if (!doc.contents && !doc.id && !doc.break && !doc.expandedStates) {
|
|
657
|
-
return "";
|
|
658
|
-
}
|
|
659
|
-
if (doc.contents.type === "group" && doc.contents.id === doc.id && doc.contents.break === doc.break && doc.contents.expandedStates === doc.expandedStates) {
|
|
660
|
-
return doc.contents;
|
|
661
|
-
}
|
|
662
|
-
break;
|
|
663
|
-
case "align":
|
|
664
|
-
case "indent":
|
|
665
|
-
case "indent-if-break":
|
|
666
|
-
case "line-suffix":
|
|
667
|
-
if (!doc.contents) {
|
|
668
|
-
return "";
|
|
669
|
-
}
|
|
670
|
-
break;
|
|
671
|
-
case "if-break":
|
|
672
|
-
if (!doc.flatContents && !doc.breakContents) {
|
|
673
|
-
return "";
|
|
674
|
-
}
|
|
675
|
-
break;
|
|
676
|
-
}
|
|
677
|
-
if (!isConcat(doc)) {
|
|
678
|
-
return doc;
|
|
679
|
-
}
|
|
680
|
-
const parts = [];
|
|
681
|
-
for (const part of getDocParts(doc)) {
|
|
682
|
-
if (!part) {
|
|
683
|
-
continue;
|
|
684
|
-
}
|
|
685
|
-
const [currentPart, ...restParts] = isConcat(part) ? getDocParts(part) : [part];
|
|
686
|
-
if (typeof currentPart === "string" && typeof getLast(parts) === "string") {
|
|
687
|
-
parts[parts.length - 1] += currentPart;
|
|
688
|
-
} else {
|
|
689
|
-
parts.push(currentPart);
|
|
690
|
-
}
|
|
691
|
-
parts.push(...restParts);
|
|
692
|
-
}
|
|
693
|
-
if (parts.length === 0) {
|
|
694
|
-
return "";
|
|
695
|
-
}
|
|
696
|
-
if (parts.length === 1) {
|
|
697
|
-
return parts[0];
|
|
698
|
-
}
|
|
699
|
-
return Array.isArray(doc) ? parts : Object.assign(Object.assign({}, doc), {}, {
|
|
700
|
-
parts
|
|
701
|
-
});
|
|
702
|
-
}
|
|
703
|
-
function cleanDoc(doc) {
|
|
704
|
-
return mapDoc(doc, (currentDoc) => cleanDocFn(currentDoc));
|
|
705
|
-
}
|
|
706
|
-
function normalizeParts(parts) {
|
|
707
|
-
const newParts = [];
|
|
708
|
-
const restParts = parts.filter(Boolean);
|
|
709
|
-
while (restParts.length > 0) {
|
|
710
|
-
const part = restParts.shift();
|
|
711
|
-
if (!part) {
|
|
712
|
-
continue;
|
|
713
|
-
}
|
|
714
|
-
if (isConcat(part)) {
|
|
715
|
-
restParts.unshift(...getDocParts(part));
|
|
716
|
-
continue;
|
|
717
|
-
}
|
|
718
|
-
if (newParts.length > 0 && typeof getLast(newParts) === "string" && typeof part === "string") {
|
|
719
|
-
newParts[newParts.length - 1] += part;
|
|
720
|
-
continue;
|
|
721
|
-
}
|
|
722
|
-
newParts.push(part);
|
|
723
|
-
}
|
|
724
|
-
return newParts;
|
|
725
|
-
}
|
|
726
|
-
function normalizeDoc(doc) {
|
|
727
|
-
return mapDoc(doc, (currentDoc) => {
|
|
728
|
-
if (Array.isArray(currentDoc)) {
|
|
729
|
-
return normalizeParts(currentDoc);
|
|
730
|
-
}
|
|
731
|
-
if (!currentDoc.parts) {
|
|
732
|
-
return currentDoc;
|
|
733
|
-
}
|
|
734
|
-
return Object.assign(Object.assign({}, currentDoc), {}, {
|
|
735
|
-
parts: normalizeParts(currentDoc.parts)
|
|
736
|
-
});
|
|
737
|
-
});
|
|
738
|
-
}
|
|
739
|
-
function replaceEndOfLine(doc) {
|
|
740
|
-
return mapDoc(doc, (currentDoc) => typeof currentDoc === "string" && currentDoc.includes("\n") ? replaceTextEndOfLine(currentDoc) : currentDoc);
|
|
741
|
-
}
|
|
742
|
-
function replaceTextEndOfLine(text) {
|
|
743
|
-
let replacement = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : literalline;
|
|
744
|
-
return join(replacement, text.split("\n")).parts;
|
|
745
|
-
}
|
|
746
|
-
function canBreakFn(doc) {
|
|
747
|
-
if (doc.type === "line") {
|
|
748
|
-
return true;
|
|
749
|
-
}
|
|
750
|
-
}
|
|
751
|
-
function canBreak(doc) {
|
|
752
|
-
return findInDoc(doc, canBreakFn, false);
|
|
753
|
-
}
|
|
754
|
-
module2.exports = {
|
|
755
|
-
isConcat,
|
|
756
|
-
getDocParts,
|
|
757
|
-
willBreak,
|
|
758
|
-
traverseDoc,
|
|
759
|
-
findInDoc,
|
|
760
|
-
mapDoc,
|
|
761
|
-
propagateBreaks,
|
|
762
|
-
removeLines,
|
|
763
|
-
stripTrailingHardline,
|
|
764
|
-
normalizeParts,
|
|
765
|
-
normalizeDoc,
|
|
766
|
-
cleanDoc,
|
|
767
|
-
replaceTextEndOfLine,
|
|
768
|
-
replaceEndOfLine,
|
|
769
|
-
canBreak
|
|
770
|
-
};
|
|
1264
|
+
const options = optionsParts.length > 0 ? `, { ${optionsParts.join(", ")} }` : "";
|
|
1265
|
+
if (doc2.expandedStates) {
|
|
1266
|
+
return `conditionalGroup([${doc2.expandedStates.map((part) => printDoc(part)).join(",")}]${options})`;
|
|
771
1267
|
}
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
}
|
|
801
|
-
function makeIndent(ind, options) {
|
|
802
|
-
return generateInd(ind, {
|
|
803
|
-
type: "indent"
|
|
804
|
-
}, options);
|
|
805
|
-
}
|
|
806
|
-
function makeAlign(indent2, widthOrDoc, options) {
|
|
807
|
-
if (widthOrDoc === Number.NEGATIVE_INFINITY) {
|
|
808
|
-
return indent2.root || rootIndent();
|
|
809
|
-
}
|
|
810
|
-
if (widthOrDoc < 0) {
|
|
811
|
-
return generateInd(indent2, {
|
|
812
|
-
type: "dedent"
|
|
813
|
-
}, options);
|
|
814
|
-
}
|
|
815
|
-
if (!widthOrDoc) {
|
|
816
|
-
return indent2;
|
|
817
|
-
}
|
|
818
|
-
if (widthOrDoc.type === "root") {
|
|
819
|
-
return Object.assign(Object.assign({}, indent2), {}, {
|
|
820
|
-
root: indent2
|
|
821
|
-
});
|
|
822
|
-
}
|
|
823
|
-
const alignType = typeof widthOrDoc === "string" ? "stringAlign" : "numberAlign";
|
|
824
|
-
return generateInd(indent2, {
|
|
825
|
-
type: alignType,
|
|
826
|
-
n: widthOrDoc
|
|
827
|
-
}, options);
|
|
828
|
-
}
|
|
829
|
-
function generateInd(ind, newPart, options) {
|
|
830
|
-
const queue = newPart.type === "dedent" ? ind.queue.slice(0, -1) : [...ind.queue, newPart];
|
|
831
|
-
let value = "";
|
|
832
|
-
let length = 0;
|
|
833
|
-
let lastTabs = 0;
|
|
834
|
-
let lastSpaces = 0;
|
|
835
|
-
for (const part of queue) {
|
|
836
|
-
switch (part.type) {
|
|
837
|
-
case "indent":
|
|
838
|
-
flush();
|
|
839
|
-
if (options.useTabs) {
|
|
840
|
-
addTabs(1);
|
|
841
|
-
} else {
|
|
842
|
-
addSpaces(options.tabWidth);
|
|
843
|
-
}
|
|
844
|
-
break;
|
|
845
|
-
case "stringAlign":
|
|
846
|
-
flush();
|
|
847
|
-
value += part.n;
|
|
848
|
-
length += part.n.length;
|
|
849
|
-
break;
|
|
850
|
-
case "numberAlign":
|
|
851
|
-
lastTabs += 1;
|
|
852
|
-
lastSpaces += part.n;
|
|
853
|
-
break;
|
|
854
|
-
default:
|
|
855
|
-
throw new Error("Unexpected type '".concat(part.type, "'"));
|
|
856
|
-
}
|
|
857
|
-
}
|
|
858
|
-
flushSpaces();
|
|
859
|
-
return Object.assign(Object.assign({}, ind), {}, {
|
|
860
|
-
value,
|
|
861
|
-
length,
|
|
862
|
-
queue
|
|
863
|
-
});
|
|
864
|
-
function addTabs(count) {
|
|
865
|
-
value += " ".repeat(count);
|
|
866
|
-
length += options.tabWidth * count;
|
|
867
|
-
}
|
|
868
|
-
function addSpaces(count) {
|
|
869
|
-
value += " ".repeat(count);
|
|
870
|
-
length += count;
|
|
871
|
-
}
|
|
872
|
-
function flush() {
|
|
873
|
-
if (options.useTabs) {
|
|
874
|
-
flushTabs();
|
|
875
|
-
} else {
|
|
876
|
-
flushSpaces();
|
|
877
|
-
}
|
|
878
|
-
}
|
|
879
|
-
function flushTabs() {
|
|
880
|
-
if (lastTabs > 0) {
|
|
881
|
-
addTabs(lastTabs);
|
|
882
|
-
}
|
|
883
|
-
resetLast();
|
|
884
|
-
}
|
|
885
|
-
function flushSpaces() {
|
|
886
|
-
if (lastSpaces > 0) {
|
|
887
|
-
addSpaces(lastSpaces);
|
|
888
|
-
}
|
|
889
|
-
resetLast();
|
|
890
|
-
}
|
|
891
|
-
function resetLast() {
|
|
892
|
-
lastTabs = 0;
|
|
893
|
-
lastSpaces = 0;
|
|
894
|
-
}
|
|
895
|
-
}
|
|
896
|
-
function trim(out) {
|
|
897
|
-
if (out.length === 0) {
|
|
898
|
-
return 0;
|
|
899
|
-
}
|
|
900
|
-
let trimCount = 0;
|
|
901
|
-
while (out.length > 0 && typeof getLast(out) === "string" && /^[\t ]*$/.test(getLast(out))) {
|
|
902
|
-
trimCount += out.pop().length;
|
|
903
|
-
}
|
|
904
|
-
if (out.length > 0 && typeof getLast(out) === "string") {
|
|
905
|
-
const trimmed = getLast(out).replace(/[\t ]*$/, "");
|
|
906
|
-
trimCount += getLast(out).length - trimmed.length;
|
|
907
|
-
out[out.length - 1] = trimmed;
|
|
908
|
-
}
|
|
909
|
-
return trimCount;
|
|
910
|
-
}
|
|
911
|
-
function fits(next, restCommands, width, options, hasLineSuffix, mustBeFlat) {
|
|
912
|
-
let restIdx = restCommands.length;
|
|
913
|
-
const cmds = [next];
|
|
914
|
-
const out = [];
|
|
915
|
-
while (width >= 0) {
|
|
916
|
-
if (cmds.length === 0) {
|
|
917
|
-
if (restIdx === 0) {
|
|
918
|
-
return true;
|
|
919
|
-
}
|
|
920
|
-
cmds.push(restCommands[restIdx - 1]);
|
|
921
|
-
restIdx--;
|
|
922
|
-
continue;
|
|
923
|
-
}
|
|
924
|
-
const [ind, mode, doc] = cmds.pop();
|
|
925
|
-
if (typeof doc === "string") {
|
|
926
|
-
out.push(doc);
|
|
927
|
-
width -= getStringWidth(doc);
|
|
928
|
-
} else if (isConcat(doc)) {
|
|
929
|
-
const parts = getDocParts(doc);
|
|
930
|
-
for (let i = parts.length - 1; i >= 0; i--) {
|
|
931
|
-
cmds.push([ind, mode, parts[i]]);
|
|
932
|
-
}
|
|
933
|
-
} else {
|
|
934
|
-
switch (doc.type) {
|
|
935
|
-
case "indent":
|
|
936
|
-
cmds.push([makeIndent(ind, options), mode, doc.contents]);
|
|
937
|
-
break;
|
|
938
|
-
case "align":
|
|
939
|
-
cmds.push([makeAlign(ind, doc.n, options), mode, doc.contents]);
|
|
940
|
-
break;
|
|
941
|
-
case "trim":
|
|
942
|
-
width += trim(out);
|
|
943
|
-
break;
|
|
944
|
-
case "group": {
|
|
945
|
-
if (mustBeFlat && doc.break) {
|
|
946
|
-
return false;
|
|
947
|
-
}
|
|
948
|
-
const groupMode = doc.break ? MODE_BREAK : mode;
|
|
949
|
-
cmds.push([ind, groupMode, doc.expandedStates && groupMode === MODE_BREAK ? getLast(doc.expandedStates) : doc.contents]);
|
|
950
|
-
if (doc.id) {
|
|
951
|
-
groupModeMap[doc.id] = groupMode;
|
|
952
|
-
}
|
|
953
|
-
break;
|
|
954
|
-
}
|
|
955
|
-
case "fill":
|
|
956
|
-
for (let i = doc.parts.length - 1; i >= 0; i--) {
|
|
957
|
-
cmds.push([ind, mode, doc.parts[i]]);
|
|
958
|
-
}
|
|
959
|
-
break;
|
|
960
|
-
case "if-break":
|
|
961
|
-
case "indent-if-break": {
|
|
962
|
-
const groupMode = doc.groupId ? groupModeMap[doc.groupId] : mode;
|
|
963
|
-
if (groupMode === MODE_BREAK) {
|
|
964
|
-
const breakContents = doc.type === "if-break" ? doc.breakContents : doc.negate ? doc.contents : indent(doc.contents);
|
|
965
|
-
if (breakContents) {
|
|
966
|
-
cmds.push([ind, mode, breakContents]);
|
|
967
|
-
}
|
|
968
|
-
}
|
|
969
|
-
if (groupMode === MODE_FLAT) {
|
|
970
|
-
const flatContents = doc.type === "if-break" ? doc.flatContents : doc.negate ? indent(doc.contents) : doc.contents;
|
|
971
|
-
if (flatContents) {
|
|
972
|
-
cmds.push([ind, mode, flatContents]);
|
|
973
|
-
}
|
|
974
|
-
}
|
|
975
|
-
break;
|
|
976
|
-
}
|
|
977
|
-
case "line":
|
|
978
|
-
switch (mode) {
|
|
979
|
-
case MODE_FLAT:
|
|
980
|
-
if (!doc.hard) {
|
|
981
|
-
if (!doc.soft) {
|
|
982
|
-
out.push(" ");
|
|
983
|
-
width -= 1;
|
|
984
|
-
}
|
|
985
|
-
break;
|
|
986
|
-
}
|
|
987
|
-
return true;
|
|
988
|
-
case MODE_BREAK:
|
|
989
|
-
return true;
|
|
990
|
-
}
|
|
991
|
-
break;
|
|
992
|
-
case "line-suffix":
|
|
993
|
-
hasLineSuffix = true;
|
|
994
|
-
break;
|
|
995
|
-
case "line-suffix-boundary":
|
|
996
|
-
if (hasLineSuffix) {
|
|
997
|
-
return false;
|
|
998
|
-
}
|
|
999
|
-
break;
|
|
1000
|
-
case "label":
|
|
1001
|
-
cmds.push([ind, mode, doc.contents]);
|
|
1002
|
-
break;
|
|
1003
|
-
}
|
|
1004
|
-
}
|
|
1005
|
-
}
|
|
1006
|
-
return false;
|
|
1007
|
-
}
|
|
1008
|
-
function printDocToString(doc, options) {
|
|
1009
|
-
groupModeMap = {};
|
|
1010
|
-
const width = options.printWidth;
|
|
1011
|
-
const newLine = convertEndOfLineToChars(options.endOfLine);
|
|
1012
|
-
let pos = 0;
|
|
1013
|
-
const cmds = [[rootIndent(), MODE_BREAK, doc]];
|
|
1014
|
-
const out = [];
|
|
1015
|
-
let shouldRemeasure = false;
|
|
1016
|
-
let lineSuffix = [];
|
|
1017
|
-
while (cmds.length > 0) {
|
|
1018
|
-
const [ind, mode, doc2] = cmds.pop();
|
|
1019
|
-
if (typeof doc2 === "string") {
|
|
1020
|
-
const formatted = newLine !== "\n" ? doc2.replace(/\n/g, newLine) : doc2;
|
|
1021
|
-
out.push(formatted);
|
|
1022
|
-
pos += getStringWidth(formatted);
|
|
1023
|
-
} else if (isConcat(doc2)) {
|
|
1024
|
-
const parts = getDocParts(doc2);
|
|
1025
|
-
for (let i = parts.length - 1; i >= 0; i--) {
|
|
1026
|
-
cmds.push([ind, mode, parts[i]]);
|
|
1027
|
-
}
|
|
1028
|
-
} else {
|
|
1029
|
-
switch (doc2.type) {
|
|
1030
|
-
case "cursor":
|
|
1031
|
-
out.push(cursor.placeholder);
|
|
1032
|
-
break;
|
|
1033
|
-
case "indent":
|
|
1034
|
-
cmds.push([makeIndent(ind, options), mode, doc2.contents]);
|
|
1035
|
-
break;
|
|
1036
|
-
case "align":
|
|
1037
|
-
cmds.push([makeAlign(ind, doc2.n, options), mode, doc2.contents]);
|
|
1038
|
-
break;
|
|
1039
|
-
case "trim":
|
|
1040
|
-
pos -= trim(out);
|
|
1041
|
-
break;
|
|
1042
|
-
case "group":
|
|
1043
|
-
switch (mode) {
|
|
1044
|
-
case MODE_FLAT:
|
|
1045
|
-
if (!shouldRemeasure) {
|
|
1046
|
-
cmds.push([ind, doc2.break ? MODE_BREAK : MODE_FLAT, doc2.contents]);
|
|
1047
|
-
break;
|
|
1048
|
-
}
|
|
1049
|
-
case MODE_BREAK: {
|
|
1050
|
-
shouldRemeasure = false;
|
|
1051
|
-
const next = [ind, MODE_FLAT, doc2.contents];
|
|
1052
|
-
const rem = width - pos;
|
|
1053
|
-
const hasLineSuffix = lineSuffix.length > 0;
|
|
1054
|
-
if (!doc2.break && fits(next, cmds, rem, options, hasLineSuffix)) {
|
|
1055
|
-
cmds.push(next);
|
|
1056
|
-
} else {
|
|
1057
|
-
if (doc2.expandedStates) {
|
|
1058
|
-
const mostExpanded = getLast(doc2.expandedStates);
|
|
1059
|
-
if (doc2.break) {
|
|
1060
|
-
cmds.push([ind, MODE_BREAK, mostExpanded]);
|
|
1061
|
-
break;
|
|
1062
|
-
} else {
|
|
1063
|
-
for (let i = 1; i < doc2.expandedStates.length + 1; i++) {
|
|
1064
|
-
if (i >= doc2.expandedStates.length) {
|
|
1065
|
-
cmds.push([ind, MODE_BREAK, mostExpanded]);
|
|
1066
|
-
break;
|
|
1067
|
-
} else {
|
|
1068
|
-
const state = doc2.expandedStates[i];
|
|
1069
|
-
const cmd = [ind, MODE_FLAT, state];
|
|
1070
|
-
if (fits(cmd, cmds, rem, options, hasLineSuffix)) {
|
|
1071
|
-
cmds.push(cmd);
|
|
1072
|
-
break;
|
|
1073
|
-
}
|
|
1074
|
-
}
|
|
1075
|
-
}
|
|
1076
|
-
}
|
|
1077
|
-
} else {
|
|
1078
|
-
cmds.push([ind, MODE_BREAK, doc2.contents]);
|
|
1079
|
-
}
|
|
1080
|
-
}
|
|
1081
|
-
break;
|
|
1082
|
-
}
|
|
1083
|
-
}
|
|
1084
|
-
if (doc2.id) {
|
|
1085
|
-
groupModeMap[doc2.id] = getLast(cmds)[1];
|
|
1086
|
-
}
|
|
1087
|
-
break;
|
|
1088
|
-
case "fill": {
|
|
1089
|
-
const rem = width - pos;
|
|
1090
|
-
const {
|
|
1091
|
-
parts
|
|
1092
|
-
} = doc2;
|
|
1093
|
-
if (parts.length === 0) {
|
|
1094
|
-
break;
|
|
1095
|
-
}
|
|
1096
|
-
const [content, whitespace] = parts;
|
|
1097
|
-
const contentFlatCmd = [ind, MODE_FLAT, content];
|
|
1098
|
-
const contentBreakCmd = [ind, MODE_BREAK, content];
|
|
1099
|
-
const contentFits = fits(contentFlatCmd, [], rem, options, lineSuffix.length > 0, true);
|
|
1100
|
-
if (parts.length === 1) {
|
|
1101
|
-
if (contentFits) {
|
|
1102
|
-
cmds.push(contentFlatCmd);
|
|
1103
|
-
} else {
|
|
1104
|
-
cmds.push(contentBreakCmd);
|
|
1105
|
-
}
|
|
1106
|
-
break;
|
|
1107
|
-
}
|
|
1108
|
-
const whitespaceFlatCmd = [ind, MODE_FLAT, whitespace];
|
|
1109
|
-
const whitespaceBreakCmd = [ind, MODE_BREAK, whitespace];
|
|
1110
|
-
if (parts.length === 2) {
|
|
1111
|
-
if (contentFits) {
|
|
1112
|
-
cmds.push(whitespaceFlatCmd, contentFlatCmd);
|
|
1113
|
-
} else {
|
|
1114
|
-
cmds.push(whitespaceBreakCmd, contentBreakCmd);
|
|
1115
|
-
}
|
|
1116
|
-
break;
|
|
1117
|
-
}
|
|
1118
|
-
parts.splice(0, 2);
|
|
1119
|
-
const remainingCmd = [ind, mode, fill(parts)];
|
|
1120
|
-
const secondContent = parts[0];
|
|
1121
|
-
const firstAndSecondContentFlatCmd = [ind, MODE_FLAT, [content, whitespace, secondContent]];
|
|
1122
|
-
const firstAndSecondContentFits = fits(firstAndSecondContentFlatCmd, [], rem, options, lineSuffix.length > 0, true);
|
|
1123
|
-
if (firstAndSecondContentFits) {
|
|
1124
|
-
cmds.push(remainingCmd, whitespaceFlatCmd, contentFlatCmd);
|
|
1125
|
-
} else if (contentFits) {
|
|
1126
|
-
cmds.push(remainingCmd, whitespaceBreakCmd, contentFlatCmd);
|
|
1127
|
-
} else {
|
|
1128
|
-
cmds.push(remainingCmd, whitespaceBreakCmd, contentBreakCmd);
|
|
1129
|
-
}
|
|
1130
|
-
break;
|
|
1131
|
-
}
|
|
1132
|
-
case "if-break":
|
|
1133
|
-
case "indent-if-break": {
|
|
1134
|
-
const groupMode = doc2.groupId ? groupModeMap[doc2.groupId] : mode;
|
|
1135
|
-
if (groupMode === MODE_BREAK) {
|
|
1136
|
-
const breakContents = doc2.type === "if-break" ? doc2.breakContents : doc2.negate ? doc2.contents : indent(doc2.contents);
|
|
1137
|
-
if (breakContents) {
|
|
1138
|
-
cmds.push([ind, mode, breakContents]);
|
|
1139
|
-
}
|
|
1140
|
-
}
|
|
1141
|
-
if (groupMode === MODE_FLAT) {
|
|
1142
|
-
const flatContents = doc2.type === "if-break" ? doc2.flatContents : doc2.negate ? indent(doc2.contents) : doc2.contents;
|
|
1143
|
-
if (flatContents) {
|
|
1144
|
-
cmds.push([ind, mode, flatContents]);
|
|
1145
|
-
}
|
|
1146
|
-
}
|
|
1147
|
-
break;
|
|
1148
|
-
}
|
|
1149
|
-
case "line-suffix":
|
|
1150
|
-
lineSuffix.push([ind, mode, doc2.contents]);
|
|
1151
|
-
break;
|
|
1152
|
-
case "line-suffix-boundary":
|
|
1153
|
-
if (lineSuffix.length > 0) {
|
|
1154
|
-
cmds.push([ind, mode, {
|
|
1155
|
-
type: "line",
|
|
1156
|
-
hard: true
|
|
1157
|
-
}]);
|
|
1158
|
-
}
|
|
1159
|
-
break;
|
|
1160
|
-
case "line":
|
|
1161
|
-
switch (mode) {
|
|
1162
|
-
case MODE_FLAT:
|
|
1163
|
-
if (!doc2.hard) {
|
|
1164
|
-
if (!doc2.soft) {
|
|
1165
|
-
out.push(" ");
|
|
1166
|
-
pos += 1;
|
|
1167
|
-
}
|
|
1168
|
-
break;
|
|
1169
|
-
} else {
|
|
1170
|
-
shouldRemeasure = true;
|
|
1171
|
-
}
|
|
1172
|
-
case MODE_BREAK:
|
|
1173
|
-
if (lineSuffix.length > 0) {
|
|
1174
|
-
cmds.push([ind, mode, doc2], ...lineSuffix.reverse());
|
|
1175
|
-
lineSuffix = [];
|
|
1176
|
-
break;
|
|
1177
|
-
}
|
|
1178
|
-
if (doc2.literal) {
|
|
1179
|
-
if (ind.root) {
|
|
1180
|
-
out.push(newLine, ind.root.value);
|
|
1181
|
-
pos = ind.root.length;
|
|
1182
|
-
} else {
|
|
1183
|
-
out.push(newLine);
|
|
1184
|
-
pos = 0;
|
|
1185
|
-
}
|
|
1186
|
-
} else {
|
|
1187
|
-
pos -= trim(out);
|
|
1188
|
-
out.push(newLine + ind.value);
|
|
1189
|
-
pos = ind.length;
|
|
1190
|
-
}
|
|
1191
|
-
break;
|
|
1192
|
-
}
|
|
1193
|
-
break;
|
|
1194
|
-
case "label":
|
|
1195
|
-
cmds.push([ind, mode, doc2.contents]);
|
|
1196
|
-
break;
|
|
1197
|
-
default:
|
|
1198
|
-
}
|
|
1199
|
-
}
|
|
1200
|
-
if (cmds.length === 0 && lineSuffix.length > 0) {
|
|
1201
|
-
cmds.push(...lineSuffix.reverse());
|
|
1202
|
-
lineSuffix = [];
|
|
1203
|
-
}
|
|
1204
|
-
}
|
|
1205
|
-
const cursorPlaceholderIndex = out.indexOf(cursor.placeholder);
|
|
1206
|
-
if (cursorPlaceholderIndex !== -1) {
|
|
1207
|
-
const otherCursorPlaceholderIndex = out.indexOf(cursor.placeholder, cursorPlaceholderIndex + 1);
|
|
1208
|
-
const beforeCursor = out.slice(0, cursorPlaceholderIndex).join("");
|
|
1209
|
-
const aroundCursor = out.slice(cursorPlaceholderIndex + 1, otherCursorPlaceholderIndex).join("");
|
|
1210
|
-
const afterCursor = out.slice(otherCursorPlaceholderIndex + 1).join("");
|
|
1211
|
-
return {
|
|
1212
|
-
formatted: beforeCursor + aroundCursor + afterCursor,
|
|
1213
|
-
cursorNodeStart: beforeCursor.length,
|
|
1214
|
-
cursorNodeText: aroundCursor
|
|
1215
|
-
};
|
|
1216
|
-
}
|
|
1217
|
-
return {
|
|
1218
|
-
formatted: out.join("")
|
|
1219
|
-
};
|
|
1220
|
-
}
|
|
1221
|
-
module2.exports = {
|
|
1222
|
-
printDocToString
|
|
1223
|
-
};
|
|
1224
|
-
}
|
|
1225
|
-
});
|
|
1226
|
-
var require_doc_debug = __commonJS2({
|
|
1227
|
-
"src/document/doc-debug.js"(exports2, module2) {
|
|
1228
|
-
"use strict";
|
|
1229
|
-
init_define_process();
|
|
1230
|
-
var {
|
|
1231
|
-
isConcat,
|
|
1232
|
-
getDocParts
|
|
1233
|
-
} = require_doc_utils();
|
|
1234
|
-
function flattenDoc(doc) {
|
|
1235
|
-
if (!doc) {
|
|
1236
|
-
return "";
|
|
1237
|
-
}
|
|
1238
|
-
if (isConcat(doc)) {
|
|
1239
|
-
const res = [];
|
|
1240
|
-
for (const part of getDocParts(doc)) {
|
|
1241
|
-
if (isConcat(part)) {
|
|
1242
|
-
res.push(...flattenDoc(part).parts);
|
|
1243
|
-
} else {
|
|
1244
|
-
const flattened = flattenDoc(part);
|
|
1245
|
-
if (flattened !== "") {
|
|
1246
|
-
res.push(flattened);
|
|
1247
|
-
}
|
|
1248
|
-
}
|
|
1249
|
-
}
|
|
1250
|
-
return {
|
|
1251
|
-
type: "concat",
|
|
1252
|
-
parts: res
|
|
1253
|
-
};
|
|
1254
|
-
}
|
|
1255
|
-
if (doc.type === "if-break") {
|
|
1256
|
-
return Object.assign(Object.assign({}, doc), {}, {
|
|
1257
|
-
breakContents: flattenDoc(doc.breakContents),
|
|
1258
|
-
flatContents: flattenDoc(doc.flatContents)
|
|
1259
|
-
});
|
|
1260
|
-
}
|
|
1261
|
-
if (doc.type === "group") {
|
|
1262
|
-
return Object.assign(Object.assign({}, doc), {}, {
|
|
1263
|
-
contents: flattenDoc(doc.contents),
|
|
1264
|
-
expandedStates: doc.expandedStates && doc.expandedStates.map(flattenDoc)
|
|
1265
|
-
});
|
|
1266
|
-
}
|
|
1267
|
-
if (doc.type === "fill") {
|
|
1268
|
-
return {
|
|
1269
|
-
type: "fill",
|
|
1270
|
-
parts: doc.parts.map(flattenDoc)
|
|
1271
|
-
};
|
|
1272
|
-
}
|
|
1273
|
-
if (doc.contents) {
|
|
1274
|
-
return Object.assign(Object.assign({}, doc), {}, {
|
|
1275
|
-
contents: flattenDoc(doc.contents)
|
|
1276
|
-
});
|
|
1277
|
-
}
|
|
1278
|
-
return doc;
|
|
1279
|
-
}
|
|
1280
|
-
function printDocToDebug(doc) {
|
|
1281
|
-
const printedSymbols = /* @__PURE__ */ Object.create(null);
|
|
1282
|
-
const usedKeysForSymbols = /* @__PURE__ */ new Set();
|
|
1283
|
-
return printDoc(flattenDoc(doc));
|
|
1284
|
-
function printDoc(doc2, index, parentParts) {
|
|
1285
|
-
if (typeof doc2 === "string") {
|
|
1286
|
-
return JSON.stringify(doc2);
|
|
1287
|
-
}
|
|
1288
|
-
if (isConcat(doc2)) {
|
|
1289
|
-
const printed = getDocParts(doc2).map(printDoc).filter(Boolean);
|
|
1290
|
-
return printed.length === 1 ? printed[0] : "[".concat(printed.join(", "), "]");
|
|
1291
|
-
}
|
|
1292
|
-
if (doc2.type === "line") {
|
|
1293
|
-
const withBreakParent = Array.isArray(parentParts) && parentParts[index + 1] && parentParts[index + 1].type === "break-parent";
|
|
1294
|
-
if (doc2.literal) {
|
|
1295
|
-
return withBreakParent ? "literalline" : "literallineWithoutBreakParent";
|
|
1296
|
-
}
|
|
1297
|
-
if (doc2.hard) {
|
|
1298
|
-
return withBreakParent ? "hardline" : "hardlineWithoutBreakParent";
|
|
1299
|
-
}
|
|
1300
|
-
if (doc2.soft) {
|
|
1301
|
-
return "softline";
|
|
1302
|
-
}
|
|
1303
|
-
return "line";
|
|
1304
|
-
}
|
|
1305
|
-
if (doc2.type === "break-parent") {
|
|
1306
|
-
const afterHardline = Array.isArray(parentParts) && parentParts[index - 1] && parentParts[index - 1].type === "line" && parentParts[index - 1].hard;
|
|
1307
|
-
return afterHardline ? void 0 : "breakParent";
|
|
1308
|
-
}
|
|
1309
|
-
if (doc2.type === "trim") {
|
|
1310
|
-
return "trim";
|
|
1311
|
-
}
|
|
1312
|
-
if (doc2.type === "indent") {
|
|
1313
|
-
return "indent(" + printDoc(doc2.contents) + ")";
|
|
1314
|
-
}
|
|
1315
|
-
if (doc2.type === "align") {
|
|
1316
|
-
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) + ")";
|
|
1317
|
-
}
|
|
1318
|
-
if (doc2.type === "if-break") {
|
|
1319
|
-
return "ifBreak(" + printDoc(doc2.breakContents) + (doc2.flatContents ? ", " + printDoc(doc2.flatContents) : "") + (doc2.groupId ? (!doc2.flatContents ? ', ""' : "") + ", { groupId: ".concat(printGroupId(doc2.groupId), " }") : "") + ")";
|
|
1320
|
-
}
|
|
1321
|
-
if (doc2.type === "indent-if-break") {
|
|
1322
|
-
const optionsParts = [];
|
|
1323
|
-
if (doc2.negate) {
|
|
1324
|
-
optionsParts.push("negate: true");
|
|
1325
|
-
}
|
|
1326
|
-
if (doc2.groupId) {
|
|
1327
|
-
optionsParts.push("groupId: ".concat(printGroupId(doc2.groupId)));
|
|
1328
|
-
}
|
|
1329
|
-
const options = optionsParts.length > 0 ? ", { ".concat(optionsParts.join(", "), " }") : "";
|
|
1330
|
-
return "indentIfBreak(".concat(printDoc(doc2.contents)).concat(options, ")");
|
|
1331
|
-
}
|
|
1332
|
-
if (doc2.type === "group") {
|
|
1333
|
-
const optionsParts = [];
|
|
1334
|
-
if (doc2.break && doc2.break !== "propagated") {
|
|
1335
|
-
optionsParts.push("shouldBreak: true");
|
|
1336
|
-
}
|
|
1337
|
-
if (doc2.id) {
|
|
1338
|
-
optionsParts.push("id: ".concat(printGroupId(doc2.id)));
|
|
1339
|
-
}
|
|
1340
|
-
const options = optionsParts.length > 0 ? ", { ".concat(optionsParts.join(", "), " }") : "";
|
|
1341
|
-
if (doc2.expandedStates) {
|
|
1342
|
-
return "conditionalGroup([".concat(doc2.expandedStates.map((part) => printDoc(part)).join(","), "]").concat(options, ")");
|
|
1343
|
-
}
|
|
1344
|
-
return "group(".concat(printDoc(doc2.contents)).concat(options, ")");
|
|
1345
|
-
}
|
|
1346
|
-
if (doc2.type === "fill") {
|
|
1347
|
-
return "fill([".concat(doc2.parts.map((part) => printDoc(part)).join(", "), "])");
|
|
1348
|
-
}
|
|
1349
|
-
if (doc2.type === "line-suffix") {
|
|
1350
|
-
return "lineSuffix(" + printDoc(doc2.contents) + ")";
|
|
1351
|
-
}
|
|
1352
|
-
if (doc2.type === "line-suffix-boundary") {
|
|
1353
|
-
return "lineSuffixBoundary";
|
|
1354
|
-
}
|
|
1355
|
-
if (doc2.type === "label") {
|
|
1356
|
-
return "label(".concat(JSON.stringify(doc2.label), ", ").concat(printDoc(doc2.contents), ")");
|
|
1357
|
-
}
|
|
1358
|
-
throw new Error("Unknown doc type " + doc2.type);
|
|
1359
|
-
}
|
|
1360
|
-
function printGroupId(id) {
|
|
1361
|
-
if (typeof id !== "symbol") {
|
|
1362
|
-
return JSON.stringify(String(id));
|
|
1363
|
-
}
|
|
1364
|
-
if (id in printedSymbols) {
|
|
1365
|
-
return printedSymbols[id];
|
|
1366
|
-
}
|
|
1367
|
-
const prefix = String(id).slice(7, -1) || "symbol";
|
|
1368
|
-
for (let counter = 0; ; counter++) {
|
|
1369
|
-
const key = prefix + (counter > 0 ? " #".concat(counter) : "");
|
|
1370
|
-
if (!usedKeysForSymbols.has(key)) {
|
|
1371
|
-
usedKeysForSymbols.add(key);
|
|
1372
|
-
return printedSymbols[id] = "Symbol.for(".concat(JSON.stringify(key), ")");
|
|
1373
|
-
}
|
|
1374
|
-
}
|
|
1375
|
-
}
|
|
1376
|
-
}
|
|
1377
|
-
module2.exports = {
|
|
1378
|
-
printDocToDebug
|
|
1379
|
-
};
|
|
1268
|
+
return `group(${printDoc(doc2.contents)}${options})`;
|
|
1269
|
+
}
|
|
1270
|
+
if (doc2.type === DOC_TYPE_FILL) {
|
|
1271
|
+
return `fill([${doc2.parts.map((part) => printDoc(part)).join(", ")}])`;
|
|
1272
|
+
}
|
|
1273
|
+
if (doc2.type === DOC_TYPE_LINE_SUFFIX) {
|
|
1274
|
+
return "lineSuffix(" + printDoc(doc2.contents) + ")";
|
|
1275
|
+
}
|
|
1276
|
+
if (doc2.type === DOC_TYPE_LINE_SUFFIX_BOUNDARY) {
|
|
1277
|
+
return "lineSuffixBoundary";
|
|
1278
|
+
}
|
|
1279
|
+
if (doc2.type === DOC_TYPE_LABEL) {
|
|
1280
|
+
return `label(${JSON.stringify(doc2.label)}, ${printDoc(doc2.contents)})`;
|
|
1281
|
+
}
|
|
1282
|
+
throw new Error("Unknown doc type " + doc2.type);
|
|
1283
|
+
}
|
|
1284
|
+
function printGroupId(id) {
|
|
1285
|
+
if (typeof id !== "symbol") {
|
|
1286
|
+
return JSON.stringify(String(id));
|
|
1287
|
+
}
|
|
1288
|
+
if (id in printedSymbols) {
|
|
1289
|
+
return printedSymbols[id];
|
|
1290
|
+
}
|
|
1291
|
+
const prefix = id.description || "symbol";
|
|
1292
|
+
for (let counter = 0; ; counter++) {
|
|
1293
|
+
const key = prefix + (counter > 0 ? ` #${counter}` : "");
|
|
1294
|
+
if (!usedKeysForSymbols.has(key)) {
|
|
1295
|
+
usedKeysForSymbols.add(key);
|
|
1296
|
+
return printedSymbols[id] = `Symbol.for(${JSON.stringify(key)})`;
|
|
1380
1297
|
}
|
|
1381
|
-
}
|
|
1382
|
-
init_define_process();
|
|
1383
|
-
module.exports = {
|
|
1384
|
-
builders: require_doc_builders(),
|
|
1385
|
-
printer: require_doc_printer(),
|
|
1386
|
-
utils: require_doc_utils(),
|
|
1387
|
-
debug: require_doc_debug()
|
|
1388
|
-
};
|
|
1298
|
+
}
|
|
1389
1299
|
}
|
|
1390
|
-
}
|
|
1391
|
-
return
|
|
1300
|
+
}
|
|
1301
|
+
return __toCommonJS(document_exports);
|
|
1392
1302
|
});
|