!nameHasComments || _n.attributes.length) && !lastAttrHasTrailingComments; // We should print the opening element expanded if any prop value is a
// string literal with newlines
var _shouldBreak2 = _n.attributes && _n.attributes.some(function (attr) {
return attr.value && isStringLiteral$1(attr.value) && attr.value.value.includes("\n");
});
return group$2(concat$6(["<", path.call(print, "name"), path.call(print, "typeParameters"), concat$6([indent$3(concat$6(path.map(function (attr) {
return concat$6([line$2, print(attr)]);
}, "attributes"))), _n.selfClosing ? line$2 : bracketSameLine ? ">" : softline$2]), _n.selfClosing ? "/>" : bracketSameLine ? "" : ">"]), {
shouldBreak: _shouldBreak2
});
}
case "JSXClosingElement":
return concat$6(["", path.call(print, "name"), ">"]);
case "JSXOpeningFragment":
case "JSXClosingFragment":
{
var hasComment = n.comments && n.comments.length;
var hasOwnLineComment = hasComment && !n.comments.every(comments$1.isBlockComment);
var isOpeningFragment = n.type === "JSXOpeningFragment";
return concat$6([isOpeningFragment ? "<" : "", indent$3(concat$6([hasOwnLineComment ? hardline$4 : hasComment && !isOpeningFragment ? " " : "", comments.printDanglingComments(path, options, true)])), hasOwnLineComment ? hardline$4 : "", ">"]);
}
case "JSXText":
/* istanbul ignore next */
throw new Error("JSXTest should be handled by JSXElement");
case "JSXEmptyExpression":
{
var requiresHardline = n.comments && !n.comments.every(comments$1.isBlockComment);
return concat$6([comments.printDanglingComments(path, options,
/* sameIndent */
!requiresHardline), requiresHardline ? hardline$4 : ""]);
}
case "ClassBody":
if (!n.comments && n.body.length === 0) {
return "{}";
}
return concat$6(["{", n.body.length > 0 ? indent$3(concat$6([hardline$4, path.call(function (bodyPath) {
return printStatementSequence(bodyPath, options, print);
}, "body")])) : comments.printDanglingComments(path, options), hardline$4, "}"]);
case "ClassProperty":
case "TSAbstractClassProperty":
case "ClassPrivateProperty":
{
if (n.decorators && n.decorators.length !== 0) {
parts.push(printDecorators(path, options, print));
}
if (n.accessibility) {
parts.push(n.accessibility + " ");
}
if (n.declare) {
parts.push("declare ");
}
if (n.static) {
parts.push("static ");
}
if (n.type === "TSAbstractClassProperty") {
parts.push("abstract ");
}
if (n.readonly) {
parts.push("readonly ");
}
var variance = getFlowVariance$1(n);
if (variance) {
parts.push(variance);
}
parts.push(printPropertyKey(path, options, print), printOptionalToken(path), printTypeAnnotation(path, options, print));
if (n.value) {
parts.push(" =", printAssignmentRight(n.key, n.value, path.call(print, "value"), options));
}
parts.push(semi);
return group$2(concat$6(parts));
}
case "ClassDeclaration":
case "ClassExpression":
if (n.declare) {
parts.push("declare ");
}
parts.push(concat$6(printClass(path, options, print)));
return concat$6(parts);
case "TSInterfaceHeritage":
parts.push(path.call(print, "expression"));
if (n.typeParameters) {
parts.push(path.call(print, "typeParameters"));
}
return concat$6(parts);
case "TemplateElement":
return join$4(literalline$2, n.value.raw.split(/\r?\n/g));
case "TemplateLiteral":
{
var expressions = path.map(print, "expressions");
var _parentNode = path.getParentNode();
if (isJestEachTemplateLiteral$1(n, _parentNode)) {
var _printed2 = printJestEachTemplateLiteral(n, expressions, options);
if (_printed2) {
return _printed2;
}
}
var isSimple = isSimpleTemplateLiteral$1(n);
if (isSimple) {
expressions = expressions.map(function (doc) {
return printDocToString$2(doc, Object.assign({}, options, {
printWidth: Infinity
})).formatted;
});
}
parts.push(lineSuffixBoundary$1, "`");
path.each(function (childPath) {
var i = childPath.getName();
parts.push(print(childPath));
if (i < expressions.length) {
// For a template literal of the following form:
// `someQuery {
// ${call({
// a,
// b,
// })}
// }`
// the expression is on its own line (there is a \n in the previous
// quasi literal), therefore we want to indent the JavaScript
// expression inside at the beginning of ${ instead of the beginning
// of the `.
var tabWidth = options.tabWidth;
var quasi = childPath.getValue();
var indentSize = getIndentSize$1(quasi.value.raw, tabWidth);
var _printed3 = expressions[i];
if (!isSimple) {
// Breaks at the template element boundaries (${ and }) are preferred to breaking
// in the middle of a MemberExpression
if (n.expressions[i].comments && n.expressions[i].comments.length || n.expressions[i].type === "MemberExpression" || n.expressions[i].type === "OptionalMemberExpression" || n.expressions[i].type === "ConditionalExpression") {
_printed3 = concat$6([indent$3(concat$6([softline$2, _printed3])), softline$2]);
}
}
var aligned = indentSize === 0 && quasi.value.raw.endsWith("\n") ? align$1(-Infinity, _printed3) : addAlignmentToDoc$2(_printed3, indentSize, tabWidth);
parts.push(group$2(concat$6(["${", aligned, lineSuffixBoundary$1, "}"])));
}
}, "quasis");
parts.push("`");
return concat$6(parts);
}
// These types are unprintable because they serve as abstract
// supertypes for other (printable) types.
case "TaggedTemplateExpression":
return concat$6([path.call(print, "tag"), path.call(print, "typeParameters"), path.call(print, "quasi")]);
case "Node":
case "Printable":
case "SourceLocation":
case "Position":
case "Statement":
case "Function":
case "Pattern":
case "Expression":
case "Declaration":
case "Specifier":
case "NamedSpecifier":
case "Comment":
case "MemberTypeAnnotation": // Flow
case "Type":
/* istanbul ignore next */
throw new Error("unprintable type: " + JSON.stringify(n.type));
// Type Annotations for Facebook Flow, typically stripped out or
// transformed away before printing.
case "TypeAnnotation":
case "TSTypeAnnotation":
if (n.typeAnnotation) {
return path.call(print, "typeAnnotation");
}
/* istanbul ignore next */
return "";
case "TSTupleType":
case "TupleTypeAnnotation":
{
var typesField = n.type === "TSTupleType" ? "elementTypes" : "types";
return group$2(concat$6(["[", indent$3(concat$6([softline$2, printArrayItems(path, options, typesField, print)])), ifBreak$1(shouldPrintComma(options, "all") ? "," : ""), comments.printDanglingComments(path, options,
/* sameIndent */
true), softline$2, "]"]));
}
case "ExistsTypeAnnotation":
return "*";
case "EmptyTypeAnnotation":
return "empty";
case "AnyTypeAnnotation":
return "any";
case "MixedTypeAnnotation":
return "mixed";
case "ArrayTypeAnnotation":
return concat$6([path.call(print, "elementType"), "[]"]);
case "BooleanTypeAnnotation":
return "boolean";
case "BooleanLiteralTypeAnnotation":
return "" + n.value;
case "DeclareClass":
return printFlowDeclaration(path, printClass(path, options, print));
case "TSDeclareFunction":
// For TypeScript the TSDeclareFunction node shares the AST
// structure with FunctionDeclaration
return concat$6([n.declare ? "declare " : "", printFunctionDeclaration(path, print, options), semi]);
case "DeclareFunction":
return printFlowDeclaration(path, ["function ", path.call(print, "id"), n.predicate ? " " : "", path.call(print, "predicate"), semi]);
case "DeclareModule":
return printFlowDeclaration(path, ["module ", path.call(print, "id"), " ", path.call(print, "body")]);
case "DeclareModuleExports":
return printFlowDeclaration(path, ["module.exports", ": ", path.call(print, "typeAnnotation"), semi]);
case "DeclareVariable":
return printFlowDeclaration(path, ["var ", path.call(print, "id"), semi]);
case "DeclareExportAllDeclaration":
return concat$6(["declare export * from ", path.call(print, "source")]);
case "DeclareExportDeclaration":
return concat$6(["declare ", printExportDeclaration(path, options, print)]);
case "DeclareOpaqueType":
case "OpaqueType":
{
parts.push("opaque type ", path.call(print, "id"), path.call(print, "typeParameters"));
if (n.supertype) {
parts.push(": ", path.call(print, "supertype"));
}
if (n.impltype) {
parts.push(" = ", path.call(print, "impltype"));
}
parts.push(semi);
if (n.type === "DeclareOpaqueType") {
return printFlowDeclaration(path, parts);
}
return concat$6(parts);
}
case "EnumDeclaration":
return concat$6(["enum ", path.call(print, "id"), " ", path.call(print, "body")]);
case "EnumBooleanBody":
case "EnumNumberBody":
case "EnumStringBody":
case "EnumSymbolBody":
{
if (n.type === "EnumSymbolBody" || n.explicitType) {
var type = null;
switch (n.type) {
case "EnumBooleanBody":
type = "boolean";
break;
case "EnumNumberBody":
type = "number";
break;
case "EnumStringBody":
type = "string";
break;
case "EnumSymbolBody":
type = "symbol";
break;
}
parts.push("of ", type, " ");
}
if (n.members.length === 0) {
parts.push(group$2(concat$6(["{", comments.printDanglingComments(path, options), softline$2, "}"])));
} else {
parts.push(group$2(concat$6(["{", indent$3(concat$6([hardline$4, printArrayItems(path, options, "members", print), shouldPrintComma(options) ? "," : ""])), comments.printDanglingComments(path, options,
/* sameIndent */
true), hardline$4, "}"])));
}
return concat$6(parts);
}
case "EnumBooleanMember":
case "EnumNumberMember":
case "EnumStringMember":
return concat$6([path.call(print, "id"), " = ", typeof n.init === "object" ? path.call(print, "init") : String(n.init)]);
case "EnumDefaultedMember":
return path.call(print, "id");
case "FunctionTypeAnnotation":
case "TSFunctionType":
{
// FunctionTypeAnnotation is ambiguous:
// declare function foo(a: B): void; OR
// var A: (a: B) => void;
var _parent8 = path.getParentNode(0);
var _parentParent2 = path.getParentNode(1);
var _parentParentParent = path.getParentNode(2);
var isArrowFunctionTypeAnnotation = n.type === "TSFunctionType" || !((_parent8.type === "ObjectTypeProperty" || _parent8.type === "ObjectTypeInternalSlot") && !getFlowVariance$1(_parent8) && !_parent8.optional && options.locStart(_parent8) === options.locStart(n) || _parent8.type === "ObjectTypeCallProperty" || _parentParentParent && _parentParentParent.type === "DeclareFunction");
var needsColon = isArrowFunctionTypeAnnotation && (_parent8.type === "TypeAnnotation" || _parent8.type === "TSTypeAnnotation"); // Sadly we can't put it inside of FastPath::needsColon because we are
// printing ":" as part of the expression and it would put parenthesis
// around :(
var needsParens = needsColon && isArrowFunctionTypeAnnotation && (_parent8.type === "TypeAnnotation" || _parent8.type === "TSTypeAnnotation") && _parentParent2.type === "ArrowFunctionExpression";
if (isObjectTypePropertyAFunction$1(_parent8, options)) {
isArrowFunctionTypeAnnotation = true;
needsColon = true;
}
if (needsParens) {
parts.push("(");
}
parts.push(printFunctionParams(path, print, options,
/* expandArg */
false,
/* printTypeParams */
true)); // The returnType is not wrapped in a TypeAnnotation, so the colon
// needs to be added separately.
if (n.returnType || n.predicate || n.typeAnnotation) {
parts.push(isArrowFunctionTypeAnnotation ? " => " : ": ", path.call(print, "returnType"), path.call(print, "predicate"), path.call(print, "typeAnnotation"));
}
if (needsParens) {
parts.push(")");
}
return group$2(concat$6(parts));
}
case "TSRestType":
return concat$6(["...", path.call(print, "typeAnnotation")]);
case "TSOptionalType":
return concat$6([path.call(print, "typeAnnotation"), "?"]);
case "FunctionTypeParam":
return concat$6([path.call(print, "name"), printOptionalToken(path), n.name ? ": " : "", path.call(print, "typeAnnotation")]);
case "GenericTypeAnnotation":
return concat$6([path.call(print, "id"), path.call(print, "typeParameters")]);
case "DeclareInterface":
case "InterfaceDeclaration":
case "InterfaceTypeAnnotation":
{
if (n.type === "DeclareInterface" || n.declare) {
parts.push("declare ");
}
parts.push("interface");
if (n.type === "DeclareInterface" || n.type === "InterfaceDeclaration") {
parts.push(" ", path.call(print, "id"), path.call(print, "typeParameters"));
}
if (n["extends"].length > 0) {
parts.push(group$2(indent$3(concat$6([line$2, "extends ", (n.extends.length === 1 ? identity$1 : indent$3)(join$4(concat$6([",", line$2]), path.map(print, "extends")))]))));
}
parts.push(" ", path.call(print, "body"));
return group$2(concat$6(parts));
}
case "ClassImplements":
case "InterfaceExtends":
return concat$6([path.call(print, "id"), path.call(print, "typeParameters")]);
case "TSClassImplements":
return concat$6([path.call(print, "expression"), path.call(print, "typeParameters")]);
case "TSIntersectionType":
case "IntersectionTypeAnnotation":
{
var types = path.map(print, "types");
var result = [];
var wasIndented = false;
for (var _i = 0; _i < types.length; ++_i) {
if (_i === 0) {
result.push(types[_i]);
} else if (isObjectType$1(n.types[_i - 1]) && isObjectType$1(n.types[_i])) {
// If both are objects, don't indent
result.push(concat$6([" & ", wasIndented ? indent$3(types[_i]) : types[_i]]));
} else if (!isObjectType$1(n.types[_i - 1]) && !isObjectType$1(n.types[_i])) {
// If no object is involved, go to the next line if it breaks
result.push(indent$3(concat$6([" &", line$2, types[_i]])));
} else {
// If you go from object to non-object or vis-versa, then inline it
if (_i > 1) {
wasIndented = true;
}
result.push(" & ", _i > 1 ? indent$3(types[_i]) : types[_i]);
}
}
return group$2(concat$6(result));
}
case "TSUnionType":
case "UnionTypeAnnotation":
{
// single-line variation
// A | B | C
// multi-line variation
// | A
// | B
// | C
var _parent9 = path.getParentNode(); // If there's a leading comment, the parent is doing the indentation
var shouldIndent = _parent9.type !== "TypeParameterInstantiation" && _parent9.type !== "TSTypeParameterInstantiation" && _parent9.type !== "GenericTypeAnnotation" && _parent9.type !== "TSTypeReference" && _parent9.type !== "TSTypeAssertion" && _parent9.type !== "TupleTypeAnnotation" && _parent9.type !== "TSTupleType" && !(_parent9.type === "FunctionTypeParam" && !_parent9.name) && !((_parent9.type === "TypeAlias" || _parent9.type === "VariableDeclarator" || _parent9.type === "TSTypeAliasDeclaration") && hasLeadingOwnLineComment$1(options.originalText, n, options)); // {
// a: string
// } | null | void
// should be inlined and not be printed in the multi-line variant
var shouldHug = shouldHugType(n); // We want to align the children but without its comment, so it looks like
// | child1
// // comment
// | child2
var _printed4 = path.map(function (typePath) {
var printedType = typePath.call(print);
if (!shouldHug) {
printedType = align$1(2, printedType);
}
return comments.printComments(typePath, function () {
return printedType;
}, options);
}, "types");
if (shouldHug) {
return join$4(" | ", _printed4);
}
var shouldAddStartLine = shouldIndent && !hasLeadingOwnLineComment$1(options.originalText, n, options);
var code = concat$6([ifBreak$1(concat$6([shouldAddStartLine ? line$2 : "", "| "])), join$4(concat$6([line$2, "| "]), _printed4)]);
if (needsParens_1(path, options)) {
return group$2(concat$6([indent$3(code), softline$2]));
}
if (_parent9.type === "TupleTypeAnnotation" && _parent9.types.length > 1 || _parent9.type === "TSTupleType" && _parent9.elementTypes.length > 1) {
return group$2(concat$6([indent$3(concat$6([ifBreak$1(concat$6(["(", softline$2])), code])), softline$2, ifBreak$1(")")]));
}
return group$2(shouldIndent ? indent$3(code) : code);
}
case "NullableTypeAnnotation":
return concat$6(["?", path.call(print, "typeAnnotation")]);
case "TSNullKeyword":
case "NullLiteralTypeAnnotation":
return "null";
case "ThisTypeAnnotation":
return "this";
case "NumberTypeAnnotation":
return "number";
case "ObjectTypeCallProperty":
if (n.static) {
parts.push("static ");
}
parts.push(path.call(print, "value"));
return concat$6(parts);
case "ObjectTypeIndexer":
{
var _variance = getFlowVariance$1(n);
return concat$6([_variance || "", "[", path.call(print, "id"), n.id ? ": " : "", path.call(print, "key"), "]: ", path.call(print, "value")]);
}
case "ObjectTypeProperty":
{
var _variance2 = getFlowVariance$1(n);
var modifier = "";
if (n.proto) {
modifier = "proto ";
} else if (n.static) {
modifier = "static ";
}
return concat$6([modifier, isGetterOrSetter$1(n) ? n.kind + " " : "", _variance2 || "", printPropertyKey(path, options, print), printOptionalToken(path), isFunctionNotation$1(n, options) ? "" : ": ", path.call(print, "value")]);
}
case "QualifiedTypeIdentifier":
return concat$6([path.call(print, "qualification"), ".", path.call(print, "id")]);
case "StringLiteralTypeAnnotation":
return nodeStr(n, options);
case "NumberLiteralTypeAnnotation":
assert$1.strictEqual(typeof n.value, "number");
if (n.extra != null) {
return printNumber$1(n.extra.raw);
}
return printNumber$1(n.raw);
case "StringTypeAnnotation":
return "string";
case "DeclareTypeAlias":
case "TypeAlias":
{
if (n.type === "DeclareTypeAlias" || n.declare) {
parts.push("declare ");
}
var _printed5 = printAssignmentRight(n.id, n.right, path.call(print, "right"), options);
parts.push("type ", path.call(print, "id"), path.call(print, "typeParameters"), " =", _printed5, semi);
return group$2(concat$6(parts));
}
case "TypeCastExpression":
{
var value = path.getValue(); // Flow supports a comment syntax for specifying type annotations: https://flow.org/en/docs/types/comments/.
// Unfortunately, its parser doesn't differentiate between comment annotations and regular
// annotations when producing an AST. So to preserve parentheses around type casts that use
// the comment syntax, we need to hackily read the source itself to see if the code contains
// a type annotation comment.
//
// Note that we're able to use the normal whitespace regex here because the Flow parser has
// already deemed this AST node to be a type cast. Only the Babel parser needs the
// non-line-break whitespace regex, which is why hasFlowShorthandAnnotationComment() is
// implemented differently.
var commentSyntax = value && value.typeAnnotation && value.typeAnnotation.range && options.originalText.substring(value.typeAnnotation.range[0]).match(/^\/\*\s*:/);
return concat$6(["(", path.call(print, "expression"), commentSyntax ? " /*" : "", ": ", path.call(print, "typeAnnotation"), commentSyntax ? " */" : "", ")"]);
}
case "TypeParameterDeclaration":
case "TypeParameterInstantiation":
{
var _value = path.getValue();
var commentStart = _value.range ? options.originalText.substring(0, _value.range[0]).lastIndexOf("/*") : -1; // As noted in the TypeCastExpression comments above, we're able to use a normal whitespace regex here
// because we know for sure that this is a type definition.
var _commentSyntax = commentStart >= 0 && options.originalText.substring(commentStart).match(/^\/\*\s*::/);
if (_commentSyntax) {
return concat$6(["/*:: ", printTypeParameters(path, options, print, "params"), " */"]);
}
return printTypeParameters(path, options, print, "params");
}
case "TSTypeParameterDeclaration":
case "TSTypeParameterInstantiation":
return printTypeParameters(path, options, print, "params");
case "TSTypeParameter":
case "TypeParameter":
{
var _parent10 = path.getParentNode();
if (_parent10.type === "TSMappedType") {
parts.push("[", path.call(print, "name"));
if (n.constraint) {
parts.push(" in ", path.call(print, "constraint"));
}
parts.push("]");
return concat$6(parts);
}
var _variance3 = getFlowVariance$1(n);
if (_variance3) {
parts.push(_variance3);
}
parts.push(path.call(print, "name"));
if (n.bound) {
parts.push(": ");
parts.push(path.call(print, "bound"));
}
if (n.constraint) {
parts.push(" extends ", path.call(print, "constraint"));
}
if (n["default"]) {
parts.push(" = ", path.call(print, "default"));
} // Keep comma if the file extension is .tsx and
// has one type parameter that isn't extend with any types.
// Because, otherwise formatted result will be invalid as tsx.
var _grandParent = path.getNode(2);
if (_parent10.params && _parent10.params.length === 1 && isTSXFile$1(options) && !n.constraint && _grandParent.type === "ArrowFunctionExpression") {
parts.push(",");
}
return concat$6(parts);
}
case "TypeofTypeAnnotation":
return concat$6(["typeof ", path.call(print, "argument")]);
case "VoidTypeAnnotation":
return "void";
case "InferredPredicate":
return "%checks";
// Unhandled types below. If encountered, nodes of these types should
// be either left alone or desugared into AST types that are fully
// supported by the pretty-printer.
case "DeclaredPredicate":
return concat$6(["%checks(", path.call(print, "value"), ")"]);
case "TSAbstractKeyword":
return "abstract";
case "TSAnyKeyword":
return "any";
case "TSAsyncKeyword":
return "async";
case "TSBooleanKeyword":
return "boolean";
case "TSBigIntKeyword":
return "bigint";
case "TSConstKeyword":
return "const";
case "TSDeclareKeyword":
return "declare";
case "TSExportKeyword":
return "export";
case "TSNeverKeyword":
return "never";
case "TSNumberKeyword":
return "number";
case "TSObjectKeyword":
return "object";
case "TSProtectedKeyword":
return "protected";
case "TSPrivateKeyword":
return "private";
case "TSPublicKeyword":
return "public";
case "TSReadonlyKeyword":
return "readonly";
case "TSSymbolKeyword":
return "symbol";
case "TSStaticKeyword":
return "static";
case "TSStringKeyword":
return "string";
case "TSUndefinedKeyword":
return "undefined";
case "TSUnknownKeyword":
return "unknown";
case "TSVoidKeyword":
return "void";
case "TSAsExpression":
return concat$6([path.call(print, "expression"), " as ", path.call(print, "typeAnnotation")]);
case "TSArrayType":
return concat$6([path.call(print, "elementType"), "[]"]);
case "TSPropertySignature":
{
if (n.export) {
parts.push("export ");
}
if (n.accessibility) {
parts.push(n.accessibility + " ");
}
if (n.static) {
parts.push("static ");
}
if (n.readonly) {
parts.push("readonly ");
}
parts.push(printPropertyKey(path, options, print), printOptionalToken(path));
if (n.typeAnnotation) {
parts.push(": ");
parts.push(path.call(print, "typeAnnotation"));
} // This isn't valid semantically, but it's in the AST so we can print it.
if (n.initializer) {
parts.push(" = ", path.call(print, "initializer"));
}
return concat$6(parts);
}
case "TSParameterProperty":
if (n.accessibility) {
parts.push(n.accessibility + " ");
}
if (n.export) {
parts.push("export ");
}
if (n.static) {
parts.push("static ");
}
if (n.readonly) {
parts.push("readonly ");
}
parts.push(path.call(print, "parameter"));
return concat$6(parts);
case "TSTypeReference":
return concat$6([path.call(print, "typeName"), printTypeParameters(path, options, print, "typeParameters")]);
case "TSTypeQuery":
return concat$6(["typeof ", path.call(print, "exprName")]);
case "TSIndexSignature":
{
var _parent11 = path.getParentNode();
return concat$6([n.export ? "export " : "", n.accessibility ? concat$6([n.accessibility, " "]) : "", n.static ? "static " : "", n.readonly ? "readonly " : "", "[", n.parameters ? concat$6(path.map(print, "parameters")) : "", "]: ", path.call(print, "typeAnnotation"), _parent11.type === "ClassBody" ? semi : ""]);
}
case "TSTypePredicate":
return concat$6([n.asserts ? "asserts " : "", path.call(print, "parameterName"), n.typeAnnotation ? concat$6([" is ", path.call(print, "typeAnnotation")]) : ""]);
case "TSNonNullExpression":
return concat$6([path.call(print, "expression"), "!"]);
case "TSThisType":
return "this";
case "TSImportType":
return concat$6([!n.isTypeOf ? "" : "typeof ", "import(", path.call(print, "parameter"), ")", !n.qualifier ? "" : concat$6([".", path.call(print, "qualifier")]), printTypeParameters(path, options, print, "typeParameters")]);
case "TSLiteralType":
return path.call(print, "literal");
case "TSIndexedAccessType":
return concat$6([path.call(print, "objectType"), "[", path.call(print, "indexType"), "]"]);
case "TSConstructSignatureDeclaration":
case "TSCallSignatureDeclaration":
case "TSConstructorType":
{
if (n.type !== "TSCallSignatureDeclaration") {
parts.push("new ");
}
parts.push(group$2(printFunctionParams(path, print, options,
/* expandArg */
false,
/* printTypeParams */
true)));
if (n.returnType) {
var isType = n.type === "TSConstructorType";
parts.push(isType ? " => " : ": ", path.call(print, "returnType"));
}
return concat$6(parts);
}
case "TSTypeOperator":
return concat$6([n.operator, " ", path.call(print, "typeAnnotation")]);
case "TSMappedType":
{
var _shouldBreak3 = hasNewlineInRange$2(options.originalText, options.locStart(n), options.locEnd(n));
return group$2(concat$6(["{", indent$3(concat$6([options.bracketSpacing ? line$2 : softline$2, n.readonly ? concat$6([getTypeScriptMappedTypeModifier$1(n.readonly, "readonly"), " "]) : "", printTypeScriptModifiers(path, options, print), path.call(print, "typeParameter"), n.optional ? getTypeScriptMappedTypeModifier$1(n.optional, "?") : "", ": ", path.call(print, "typeAnnotation"), ifBreak$1(semi, "")])), comments.printDanglingComments(path, options,
/* sameIndent */
true), options.bracketSpacing ? line$2 : softline$2, "}"]), {
shouldBreak: _shouldBreak3
});
}
case "TSMethodSignature":
parts.push(n.accessibility ? concat$6([n.accessibility, " "]) : "", n.export ? "export " : "", n.static ? "static " : "", n.readonly ? "readonly " : "", n.computed ? "[" : "", path.call(print, "key"), n.computed ? "]" : "", printOptionalToken(path), printFunctionParams(path, print, options,
/* expandArg */
false,
/* printTypeParams */
true));
if (n.returnType) {
parts.push(": ", path.call(print, "returnType"));
}
return group$2(concat$6(parts));
case "TSNamespaceExportDeclaration":
parts.push("export as namespace ", path.call(print, "id"));
if (options.semi) {
parts.push(";");
}
return group$2(concat$6(parts));
case "TSEnumDeclaration":
if (n.declare) {
parts.push("declare ");
}
if (n.modifiers) {
parts.push(printTypeScriptModifiers(path, options, print));
}
if (n.const) {
parts.push("const ");
}
parts.push("enum ", path.call(print, "id"), " ");
if (n.members.length === 0) {
parts.push(group$2(concat$6(["{", comments.printDanglingComments(path, options), softline$2, "}"])));
} else {
parts.push(group$2(concat$6(["{", indent$3(concat$6([hardline$4, printArrayItems(path, options, "members", print), shouldPrintComma(options, "es5") ? "," : ""])), comments.printDanglingComments(path, options,
/* sameIndent */
true), hardline$4, "}"])));
}
return concat$6(parts);
case "TSEnumMember":
parts.push(path.call(print, "id"));
if (n.initializer) {
parts.push(" = ", path.call(print, "initializer"));
}
return concat$6(parts);
case "TSImportEqualsDeclaration":
if (n.isExport) {
parts.push("export ");
}
parts.push("import ", path.call(print, "id"), " = ", path.call(print, "moduleReference"));
if (options.semi) {
parts.push(";");
}
return group$2(concat$6(parts));
case "TSExternalModuleReference":
return concat$6(["require(", path.call(print, "expression"), ")"]);
case "TSModuleDeclaration":
{
var _parent12 = path.getParentNode();
var isExternalModule = isLiteral$1(n.id);
var parentIsDeclaration = _parent12.type === "TSModuleDeclaration";
var bodyIsDeclaration = n.body && n.body.type === "TSModuleDeclaration";
if (parentIsDeclaration) {
parts.push(".");
} else {
if (n.declare) {
parts.push("declare ");
}
parts.push(printTypeScriptModifiers(path, options, print));
var textBetweenNodeAndItsId = options.originalText.slice(options.locStart(n), options.locStart(n.id)); // Global declaration looks like this:
// (declare)? global { ... }
var isGlobalDeclaration = n.id.type === "Identifier" && n.id.name === "global" && !/namespace|module/.test(textBetweenNodeAndItsId);
if (!isGlobalDeclaration) {
parts.push(isExternalModule || /(^|\s)module(\s|$)/.test(textBetweenNodeAndItsId) ? "module " : "namespace ");
}
}
parts.push(path.call(print, "id"));
if (bodyIsDeclaration) {
parts.push(path.call(print, "body"));
} else if (n.body) {
parts.push(" ", group$2(path.call(print, "body")));
} else {
parts.push(semi);
}
return concat$6(parts);
}
case "PrivateName":
return concat$6(["#", path.call(print, "id")]);
case "TSConditionalType":
return printTernaryOperator(path, options, print, {
beforeParts: function beforeParts() {
return [path.call(print, "checkType"), " ", "extends", " ", path.call(print, "extendsType")];
},
afterParts: function afterParts() {
return [];
},
shouldCheckJsx: false,
conditionalNodeType: "TSConditionalType",
consequentNodePropertyName: "trueType",
alternateNodePropertyName: "falseType",
testNodePropertyName: "checkType",
breakNested: true
});
case "TSInferType":
return concat$6(["infer", " ", path.call(print, "typeParameter")]);
case "InterpreterDirective":
parts.push("#!", n.value, hardline$4);
if (isNextLineEmpty$2(options.originalText, n, options)) {
parts.push(hardline$4);
}
return concat$6(parts);
case "NGRoot":
return concat$6([].concat(path.call(print, "node"), !n.node.comments || n.node.comments.length === 0 ? [] : concat$6([" //", n.node.comments[0].value.trimRight()])));
case "NGChainedExpression":
return group$2(join$4(concat$6([";", line$2]), path.map(function (childPath) {
return hasNgSideEffect$1(childPath) ? print(childPath) : concat$6(["(", print(childPath), ")"]);
}, "expressions")));
case "NGEmptyExpression":
return "";
case "NGQuotedExpression":
return concat$6([n.prefix, ":", n.value]);
case "NGMicrosyntax":
return concat$6(path.map(function (childPath, index) {
return concat$6([index === 0 ? "" : isNgForOf$1(childPath.getValue(), index, n) ? " " : concat$6([";", line$2]), print(childPath)]);
}, "body"));
case "NGMicrosyntaxKey":
return /^[a-z_$][a-z0-9_$]*(-[a-z_$][a-z0-9_$])*$/i.test(n.name) ? n.name : JSON.stringify(n.name);
case "NGMicrosyntaxExpression":
return concat$6([path.call(print, "expression"), n.alias === null ? "" : concat$6([" as ", path.call(print, "alias")])]);
case "NGMicrosyntaxKeyedExpression":
{
var index = path.getName();
var _parentNode2 = path.getParentNode();
var shouldNotPrintColon = isNgForOf$1(n, index, _parentNode2) || (index === 1 && (n.key.name === "then" || n.key.name === "else") || index === 2 && n.key.name === "else" && _parentNode2.body[index - 1].type === "NGMicrosyntaxKeyedExpression" && _parentNode2.body[index - 1].key.name === "then") && _parentNode2.body[0].type === "NGMicrosyntaxExpression";
return concat$6([path.call(print, "key"), shouldNotPrintColon ? " " : ": ", path.call(print, "expression")]);
}
case "NGMicrosyntaxLet":
return concat$6(["let ", path.call(print, "key"), n.value === null ? "" : concat$6([" = ", path.call(print, "value")])]);
case "NGMicrosyntaxAs":
return concat$6([path.call(print, "key"), " as ", path.call(print, "alias")]);
case "ArgumentPlaceholder":
return "?";
default:
/* istanbul ignore next */
throw new Error("unknown type: " + JSON.stringify(n.type));
}
}
function printStatementSequence(path, options, print) {
var printed = [];
var bodyNode = path.getNode();
var isClass = bodyNode.type === "ClassBody";
path.map(function (stmtPath, i) {
var stmt = stmtPath.getValue(); // Just in case the AST has been modified to contain falsy
// "statements," it's safer simply to skip them.
/* istanbul ignore if */
if (!stmt) {
return;
} // Skip printing EmptyStatement nodes to avoid leaving stray
// semicolons lying around.
if (stmt.type === "EmptyStatement") {
return;
}
var stmtPrinted = print(stmtPath);
var text = options.originalText;
var parts = []; // in no-semi mode, prepend statement with semicolon if it might break ASI
// don't prepend the only JSX element in a program with semicolon
if (!options.semi && !isClass && !isTheOnlyJSXElementInMarkdown$1(options, stmtPath) && stmtNeedsASIProtection(stmtPath, options)) {
if (stmt.comments && stmt.comments.some(function (comment) {
return comment.leading;
})) {
parts.push(print(stmtPath, {
needsSemi: true
}));
} else {
parts.push(";", stmtPrinted);
}
} else {
parts.push(stmtPrinted);
}
if (!options.semi && isClass) {
if (classPropMayCauseASIProblems$1(stmtPath)) {
parts.push(";");
} else if (stmt.type === "ClassProperty") {
var nextChild = bodyNode.body[i + 1];
if (classChildNeedsASIProtection$1(nextChild)) {
parts.push(";");
}
}
}
if (isNextLineEmpty$2(text, stmt, options) && !isLastStatement$1(stmtPath)) {
parts.push(hardline$4);
}
printed.push(concat$6(parts));
});
return join$4(hardline$4, printed);
}
function printPropertyKey(path, options, print) {
var node = path.getNode();
if (node.computed) {
return concat$6(["[", path.call(print, "key"), "]"]);
}
var parent = path.getParentNode();
var key = node.key;
if (options.quoteProps === "consistent" && !needsQuoteProps.has(parent)) {
var objectHasStringProp = (parent.properties || parent.body || parent.members).some(function (prop) {
return !prop.computed && prop.key && isStringLiteral$1(prop.key) && !isStringPropSafeToCoerceToIdentifier$1(prop, options);
});
needsQuoteProps.set(parent, objectHasStringProp);
}
if (key.type === "Identifier" && (options.parser === "json" || options.quoteProps === "consistent" && needsQuoteProps.get(parent))) {
// a -> "a"
var prop = printString$1(JSON.stringify(key.name), options);
return path.call(function (keyPath) {
return comments.printComments(keyPath, function () {
return prop;
}, options);
}, "key");
}
if (isStringPropSafeToCoerceToIdentifier$1(node, options) && (options.quoteProps === "as-needed" || options.quoteProps === "consistent" && !needsQuoteProps.get(parent))) {
// 'a' -> a
return path.call(function (keyPath) {
return comments.printComments(keyPath, function () {
return key.value;
}, options);
}, "key");
}
return path.call(print, "key");
}
function printMethod(path, options, print) {
var node = path.getNode();
var kind = node.kind;
var value = node.value || node;
var parts = [];
if (!kind || kind === "init" || kind === "method" || kind === "constructor") {
if (value.async) {
parts.push("async ");
}
if (value.generator) {
parts.push("*");
}
} else {
assert$1.ok(kind === "get" || kind === "set");
parts.push(kind, " ");
}
parts.push(printPropertyKey(path, options, print), node.optional || node.key.optional ? "?" : "", node === value ? printMethodInternal(path, options, print) : path.call(function (path) {
return printMethodInternal(path, options, print);
}, "value"));
return concat$6(parts);
}
function printMethodInternal(path, options, print) {
var parts = [printFunctionTypeParameters(path, options, print), group$2(concat$6([printFunctionParams(path, print, options), printReturnType(path, print, options)]))];
if (path.getNode().body) {
parts.push(" ", path.call(print, "body"));
} else {
parts.push(options.semi ? ";" : "");
}
return concat$6(parts);
}
function couldGroupArg(arg) {
return arg.type === "ObjectExpression" && (arg.properties.length > 0 || arg.comments) || arg.type === "ArrayExpression" && (arg.elements.length > 0 || arg.comments) || arg.type === "TSTypeAssertion" && couldGroupArg(arg.expression) || arg.type === "TSAsExpression" && couldGroupArg(arg.expression) || arg.type === "FunctionExpression" || arg.type === "ArrowFunctionExpression" && ( // we want to avoid breaking inside composite return types but not simple keywords
// https://github.com/prettier/prettier/issues/4070
// export class Thing implements OtherThing {
// do: (type: Type) => Provider
= memoize(
// (type: ObjectType): Provider => {}
// );
// }
// https://github.com/prettier/prettier/issues/6099
// app.get("/", (req, res): void => {
// res.send("Hello World!");
// });
!arg.returnType || !arg.returnType.typeAnnotation || arg.returnType.typeAnnotation.type !== "TSTypeReference") && (arg.body.type === "BlockStatement" || arg.body.type === "ArrowFunctionExpression" || arg.body.type === "ObjectExpression" || arg.body.type === "ArrayExpression" || arg.body.type === "CallExpression" || arg.body.type === "OptionalCallExpression" || arg.body.type === "ConditionalExpression" || isJSXNode$1(arg.body));
}
function shouldGroupLastArg(args) {
var lastArg = getLast$2(args);
var penultimateArg = getPenultimate$1(args);
return !hasLeadingComment$3(lastArg) && !hasTrailingComment$1(lastArg) && couldGroupArg(lastArg) && ( // If the last two arguments are of the same type,
// disable last element expansion.
!penultimateArg || penultimateArg.type !== lastArg.type);
}
function shouldGroupFirstArg(args) {
if (args.length !== 2) {
return false;
}
var firstArg = args[0];
var secondArg = args[1];
return (!firstArg.comments || !firstArg.comments.length) && (firstArg.type === "FunctionExpression" || firstArg.type === "ArrowFunctionExpression" && firstArg.body.type === "BlockStatement") && secondArg.type !== "FunctionExpression" && secondArg.type !== "ArrowFunctionExpression" && secondArg.type !== "ConditionalExpression" && !couldGroupArg(secondArg);
}
function printJestEachTemplateLiteral(node, expressions, options) {
/**
* a | b | expected
* ${1} | ${1} | ${2}
* ${1} | ${2} | ${3}
* ${2} | ${1} | ${3}
*/
var headerNames = node.quasis[0].value.raw.trim().split(/\s*\|\s*/);
if (headerNames.length > 1 || headerNames.some(function (headerName) {
return headerName.length !== 0;
})) {
var parts = [];
var stringifiedExpressions = expressions.map(function (doc) {
return "${" + printDocToString$2(doc, Object.assign({}, options, {
printWidth: Infinity,
endOfLine: "lf"
})).formatted + "}";
});
var tableBody = [{
hasLineBreak: false,
cells: []
}];
for (var i = 1; i < node.quasis.length; i++) {
var row = tableBody[tableBody.length - 1];
var correspondingExpression = stringifiedExpressions[i - 1];
row.cells.push(correspondingExpression);
if (correspondingExpression.indexOf("\n") !== -1) {
row.hasLineBreak = true;
}
if (node.quasis[i].value.raw.indexOf("\n") !== -1) {
tableBody.push({
hasLineBreak: false,
cells: []
});
}
}
var maxColumnCount = tableBody.reduce(function (maxColumnCount, row) {
return Math.max(maxColumnCount, row.cells.length);
}, headerNames.length);
var maxColumnWidths = Array.from(new Array(maxColumnCount), function () {
return 0;
});
var table = [{
cells: headerNames
}].concat(tableBody.filter(function (row) {
return row.cells.length !== 0;
}));
table.filter(function (row) {
return !row.hasLineBreak;
}).forEach(function (row) {
row.cells.forEach(function (cell, index) {
maxColumnWidths[index] = Math.max(maxColumnWidths[index], getStringWidth$2(cell));
});
});
parts.push(lineSuffixBoundary$1, "`", indent$3(concat$6([hardline$4, join$4(hardline$4, table.map(function (row) {
return join$4(" | ", row.cells.map(function (cell, index) {
return row.hasLineBreak ? cell : cell + " ".repeat(maxColumnWidths[index] - getStringWidth$2(cell));
}));
}))])), hardline$4, "`");
return concat$6(parts);
}
}
function printArgumentsList(path, options, print) {
var node = path.getValue();
var args = node.arguments;
if (args.length === 0) {
return concat$6(["(", comments.printDanglingComments(path, options,
/* sameIndent */
true), ")"]);
} // useEffect(() => { ... }, [foo, bar, baz])
if (args.length === 2 && args[0].type === "ArrowFunctionExpression" && args[0].params.length === 0 && args[0].body.type === "BlockStatement" && args[1].type === "ArrayExpression" && !args.find(function (arg) {
return arg.comments;
})) {
return concat$6(["(", path.call(print, "arguments", 0), ", ", path.call(print, "arguments", 1), ")"]);
} // func(
// ({
// a,
// b
// }) => {}
// );
function shouldBreakForArrowFunctionInArguments(arg, argPath) {
if (!arg || arg.type !== "ArrowFunctionExpression" || !arg.body || arg.body.type !== "BlockStatement" || !arg.params || arg.params.length < 1) {
return false;
}
var shouldBreak = false;
argPath.each(function (paramPath) {
var printed = concat$6([print(paramPath)]);
shouldBreak = shouldBreak || willBreak$1(printed);
}, "params");
return shouldBreak;
}
var anyArgEmptyLine = false;
var shouldBreakForArrowFunction = false;
var hasEmptyLineFollowingFirstArg = false;
var lastArgIndex = args.length - 1;
var printedArguments = path.map(function (argPath, index) {
var arg = argPath.getNode();
var parts = [print(argPath)];
if (index === lastArgIndex) ; else if (isNextLineEmpty$2(options.originalText, arg, options)) {
if (index === 0) {
hasEmptyLineFollowingFirstArg = true;
}
anyArgEmptyLine = true;
parts.push(",", hardline$4, hardline$4);
} else {
parts.push(",", line$2);
}
shouldBreakForArrowFunction = shouldBreakForArrowFunctionInArguments(arg, argPath);
return concat$6(parts);
}, "arguments");
var maybeTrailingComma = // Dynamic imports cannot have trailing commas
!(node.callee && node.callee.type === "Import") && shouldPrintComma(options, "all") ? "," : "";
function allArgsBrokenOut() {
return group$2(concat$6(["(", indent$3(concat$6([line$2, concat$6(printedArguments)])), maybeTrailingComma, line$2, ")"]), {
shouldBreak: true
});
}
if (isFunctionCompositionArgs$1(args)) {
return allArgsBrokenOut();
}
var shouldGroupFirst = shouldGroupFirstArg(args);
var shouldGroupLast = shouldGroupLastArg(args);
if (shouldGroupFirst || shouldGroupLast) {
var shouldBreak = (shouldGroupFirst ? printedArguments.slice(1).some(willBreak$1) : printedArguments.slice(0, -1).some(willBreak$1)) || anyArgEmptyLine || shouldBreakForArrowFunction; // We want to print the last argument with a special flag
var printedExpanded;
var i = 0;
path.each(function (argPath) {
if (shouldGroupFirst && i === 0) {
printedExpanded = [concat$6([argPath.call(function (p) {
return print(p, {
expandFirstArg: true
});
}), printedArguments.length > 1 ? "," : "", hasEmptyLineFollowingFirstArg ? hardline$4 : line$2, hasEmptyLineFollowingFirstArg ? hardline$4 : ""])].concat(printedArguments.slice(1));
}
if (shouldGroupLast && i === args.length - 1) {
printedExpanded = printedArguments.slice(0, -1).concat(argPath.call(function (p) {
return print(p, {
expandLastArg: true
});
}));
}
i++;
}, "arguments");
var somePrintedArgumentsWillBreak = printedArguments.some(willBreak$1);
var simpleConcat = concat$6(["(", concat$6(printedExpanded), ")"]);
return concat$6([somePrintedArgumentsWillBreak ? breakParent$2 : "", conditionalGroup$1([!somePrintedArgumentsWillBreak && !node.typeArguments && !node.typeParameters ? simpleConcat : ifBreak$1(allArgsBrokenOut(), simpleConcat), shouldGroupFirst ? concat$6(["(", group$2(printedExpanded[0], {
shouldBreak: true
}), concat$6(printedExpanded.slice(1)), ")"]) : concat$6(["(", concat$6(printedArguments.slice(0, -1)), group$2(getLast$2(printedExpanded), {
shouldBreak: true
}), ")"]), allArgsBrokenOut()], {
shouldBreak
})]);
}
var contents = concat$6(["(", indent$3(concat$6([softline$2, concat$6(printedArguments)])), ifBreak$1(maybeTrailingComma), softline$2, ")"]);
if (isLongCurriedCallExpression$1(path)) {
// By not wrapping the arguments in a group, the printer prioritizes
// breaking up these arguments rather than the args of the parent call.
return contents;
}
return group$2(contents, {
shouldBreak: printedArguments.some(willBreak$1) || anyArgEmptyLine
});
}
function printTypeAnnotation(path, options, print) {
var node = path.getValue();
if (!node.typeAnnotation) {
return "";
}
var parentNode = path.getParentNode();
var isDefinite = node.definite || parentNode && parentNode.type === "VariableDeclarator" && parentNode.definite;
var isFunctionDeclarationIdentifier = parentNode.type === "DeclareFunction" && parentNode.id === node;
if (isFlowAnnotationComment$1(options.originalText, node.typeAnnotation, options)) {
return concat$6([" /*: ", path.call(print, "typeAnnotation"), " */"]);
}
return concat$6([isFunctionDeclarationIdentifier ? "" : isDefinite ? "!: " : ": ", path.call(print, "typeAnnotation")]);
}
function printFunctionTypeParameters(path, options, print) {
var fun = path.getValue();
if (fun.typeArguments) {
return path.call(print, "typeArguments");
}
if (fun.typeParameters) {
return path.call(print, "typeParameters");
}
return "";
}
function printFunctionParams(path, print, options, expandArg, printTypeParams) {
var fun = path.getValue();
var parent = path.getParentNode();
var paramsField = fun.parameters ? "parameters" : "params";
var isParametersInTestCall = isTestCall$1(parent);
var shouldHugParameters = shouldHugArguments(fun);
var shouldExpandParameters = expandArg && !(fun[paramsField] && fun[paramsField].some(function (n) {
return n.comments;
}));
var typeParams = printTypeParams ? printFunctionTypeParameters(path, options, print) : "";
var printed = [];
if (fun[paramsField]) {
var lastArgIndex = fun[paramsField].length - 1;
printed = path.map(function (childPath, index) {
var parts = [];
var param = childPath.getValue();
parts.push(print(childPath));
if (index === lastArgIndex) {
if (fun.rest) {
parts.push(",", line$2);
}
} else if (isParametersInTestCall || shouldHugParameters || shouldExpandParameters) {
parts.push(", ");
} else if (isNextLineEmpty$2(options.originalText, param, options)) {
parts.push(",", hardline$4, hardline$4);
} else {
parts.push(",", line$2);
}
return concat$6(parts);
}, paramsField);
}
if (fun.rest) {
printed.push(concat$6(["...", path.call(print, "rest")]));
}
if (printed.length === 0) {
return concat$6([typeParams, "(", comments.printDanglingComments(path, options,
/* sameIndent */
true, function (comment) {
return getNextNonSpaceNonCommentCharacter$1(options.originalText, comment, options.locEnd) === ")";
}), ")"]);
}
var lastParam = getLast$2(fun[paramsField]); // If the parent is a call with the first/last argument expansion and this is the
// params of the first/last argument, we don't want the arguments to break and instead
// want the whole expression to be on a new line.
//
// Good: Bad:
// verylongcall( verylongcall((
// (a, b) => { a,
// } b,
// }) ) => {
// })
if (shouldExpandParameters) {
return group$2(concat$6([removeLines$1(typeParams), "(", concat$6(printed.map(removeLines$1)), ")"]));
} // Single object destructuring should hug
//
// function({
// a,
// b,
// c
// }) {}
var hasNotParameterDecorator = fun[paramsField].every(function (param) {
return !param.decorators;
});
if (shouldHugParameters && hasNotParameterDecorator) {
return concat$6([typeParams, "(", concat$6(printed), ")"]);
} // don't break in specs, eg; `it("should maintain parens around done even when long", (done) => {})`
if (isParametersInTestCall) {
return concat$6([typeParams, "(", concat$6(printed), ")"]);
}
var isFlowShorthandWithOneArg = (isObjectTypePropertyAFunction$1(parent, options) || isTypeAnnotationAFunction$1(parent, options) || parent.type === "TypeAlias" || parent.type === "UnionTypeAnnotation" || parent.type === "TSUnionType" || parent.type === "IntersectionTypeAnnotation" || parent.type === "FunctionTypeAnnotation" && parent.returnType === fun) && fun[paramsField].length === 1 && fun[paramsField][0].name === null && fun[paramsField][0].typeAnnotation && fun.typeParameters === null && isSimpleFlowType$1(fun[paramsField][0].typeAnnotation) && !fun.rest;
if (isFlowShorthandWithOneArg) {
if (options.arrowParens === "always") {
return concat$6(["(", concat$6(printed), ")"]);
}
return concat$6(printed);
}
var canHaveTrailingComma = !(lastParam && lastParam.type === "RestElement") && !fun.rest;
return concat$6([typeParams, "(", indent$3(concat$6([softline$2, concat$6(printed)])), ifBreak$1(canHaveTrailingComma && shouldPrintComma(options, "all") ? "," : ""), softline$2, ")"]);
}
function shouldPrintParamsWithoutParens(path, options) {
if (options.arrowParens === "always") {
return false;
}
if (options.arrowParens === "avoid") {
var node = path.getValue();
return canPrintParamsWithoutParens(node);
} // Fallback default; should be unreachable
return false;
}
function canPrintParamsWithoutParens(node) {
return node.params.length === 1 && !node.rest && !node.typeParameters && !hasDanglingComments$1(node) && node.params[0].type === "Identifier" && !node.params[0].typeAnnotation && !node.params[0].comments && !node.params[0].optional && !node.predicate && !node.returnType;
}
function printFunctionDeclaration(path, print, options) {
var n = path.getValue();
var parts = [];
if (n.async) {
parts.push("async ");
}
parts.push("function");
if (n.generator) {
parts.push("*");
}
if (n.id) {
parts.push(" ", path.call(print, "id"));
}
parts.push(printFunctionTypeParameters(path, options, print), group$2(concat$6([printFunctionParams(path, print, options), printReturnType(path, print, options)])), n.body ? " " : "", path.call(print, "body"));
return concat$6(parts);
}
function printReturnType(path, print, options) {
var n = path.getValue();
var returnType = path.call(print, "returnType");
if (n.returnType && isFlowAnnotationComment$1(options.originalText, n.returnType, options)) {
return concat$6([" /*: ", returnType, " */"]);
}
var parts = [returnType]; // prepend colon to TypeScript type annotation
if (n.returnType && n.returnType.typeAnnotation) {
parts.unshift(": ");
}
if (n.predicate) {
// The return type will already add the colon, but otherwise we
// need to do it ourselves
parts.push(n.returnType ? " " : ": ", path.call(print, "predicate"));
}
return concat$6(parts);
}
function printExportDeclaration(path, options, print) {
var decl = path.getValue();
var semi = options.semi ? ";" : "";
var parts = ["export "];
var isDefault = decl["default"] || decl.type === "ExportDefaultDeclaration";
if (isDefault) {
parts.push("default ");
}
parts.push(comments.printDanglingComments(path, options,
/* sameIndent */
true));
if (needsHardlineAfterDanglingComment$1(decl)) {
parts.push(hardline$4);
}
if (decl.declaration) {
parts.push(path.call(print, "declaration"));
if (isDefault && decl.declaration.type !== "ClassDeclaration" && decl.declaration.type !== "FunctionDeclaration" && decl.declaration.type !== "TSInterfaceDeclaration" && decl.declaration.type !== "DeclareClass" && decl.declaration.type !== "DeclareFunction" && decl.declaration.type !== "TSDeclareFunction") {
parts.push(semi);
}
} else {
if (decl.specifiers && decl.specifiers.length > 0) {
var specifiers = [];
var defaultSpecifiers = [];
var namespaceSpecifiers = [];
path.each(function (specifierPath) {
var specifierType = path.getValue().type;
if (specifierType === "ExportSpecifier") {
specifiers.push(print(specifierPath));
} else if (specifierType === "ExportDefaultSpecifier") {
defaultSpecifiers.push(print(specifierPath));
} else if (specifierType === "ExportNamespaceSpecifier") {
namespaceSpecifiers.push(concat$6(["* as ", print(specifierPath)]));
}
}, "specifiers");
var isNamespaceFollowed = namespaceSpecifiers.length !== 0 && specifiers.length !== 0;
var isDefaultFollowed = defaultSpecifiers.length !== 0 && (namespaceSpecifiers.length !== 0 || specifiers.length !== 0);
var canBreak = specifiers.length > 1 || defaultSpecifiers.length > 0 || decl.specifiers && decl.specifiers.some(function (node) {
return node.comments;
});
var printed = "";
if (specifiers.length !== 0) {
if (canBreak) {
printed = group$2(concat$6(["{", indent$3(concat$6([options.bracketSpacing ? line$2 : softline$2, join$4(concat$6([",", line$2]), specifiers)])), ifBreak$1(shouldPrintComma(options) ? "," : ""), options.bracketSpacing ? line$2 : softline$2, "}"]));
} else {
printed = concat$6(["{", options.bracketSpacing ? " " : "", concat$6(specifiers), options.bracketSpacing ? " " : "", "}"]);
}
}
parts.push(decl.exportKind === "type" ? "type " : "", concat$6(defaultSpecifiers), concat$6([isDefaultFollowed ? ", " : ""]), concat$6(namespaceSpecifiers), concat$6([isNamespaceFollowed ? ", " : ""]), printed);
} else {
parts.push("{}");
}
if (decl.source) {
parts.push(" from ", path.call(print, "source"));
}
parts.push(semi);
}
return concat$6(parts);
}
function printFlowDeclaration(path, parts) {
var parentExportDecl = getParentExportDeclaration$1(path);
if (parentExportDecl) {
assert$1.strictEqual(parentExportDecl.type, "DeclareExportDeclaration");
} else {
// If the parent node has type DeclareExportDeclaration, then it
// will be responsible for printing the "declare" token. Otherwise
// it needs to be printed with this non-exported declaration node.
parts.unshift("declare ");
}
return concat$6(parts);
}
function printTypeScriptModifiers(path, options, print) {
var n = path.getValue();
if (!n.modifiers || !n.modifiers.length) {
return "";
}
return concat$6([join$4(" ", path.map(print, "modifiers")), " "]);
}
function printTypeParameters(path, options, print, paramsKey) {
var n = path.getValue();
if (!n[paramsKey]) {
return "";
} // for TypeParameterDeclaration typeParameters is a single node
if (!Array.isArray(n[paramsKey])) {
return path.call(print, paramsKey);
}
var grandparent = path.getNode(2);
var greatGreatGrandParent = path.getNode(4);
var isParameterInTestCall = grandparent != null && isTestCall$1(grandparent);
var shouldInline = isParameterInTestCall || n[paramsKey].length === 0 || n[paramsKey].length === 1 && (shouldHugType(n[paramsKey][0]) || n[paramsKey][0].type === "GenericTypeAnnotation" && shouldHugType(n[paramsKey][0].id) || n[paramsKey][0].type === "TSTypeReference" && shouldHugType(n[paramsKey][0].typeName) || n[paramsKey][0].type === "NullableTypeAnnotation" || // See https://github.com/prettier/prettier/pull/6467 for the context.
greatGreatGrandParent && greatGreatGrandParent.type === "VariableDeclarator" && grandparent && grandparent.type === "TSTypeAnnotation" && n[paramsKey][0].type !== "TSUnionType" && n[paramsKey][0].type !== "UnionTypeAnnotation" && n[paramsKey][0].type !== "TSConditionalType" && n[paramsKey][0].type !== "TSMappedType");
if (shouldInline) {
return concat$6(["<", join$4(", ", path.map(print, paramsKey)), ">"]);
}
return group$2(concat$6(["<", indent$3(concat$6([softline$2, join$4(concat$6([",", line$2]), path.map(print, paramsKey))])), ifBreak$1(options.parser !== "typescript" && shouldPrintComma(options, "all") ? "," : ""), softline$2, ">"]));
}
function printClass(path, options, print) {
var n = path.getValue();
var parts = [];
if (n.abstract) {
parts.push("abstract ");
}
parts.push("class");
if (n.id) {
parts.push(" ", path.call(print, "id"));
}
parts.push(path.call(print, "typeParameters"));
var partsGroup = [];
if (n.superClass) {
var printed = concat$6(["extends ", path.call(print, "superClass"), path.call(print, "superTypeParameters")]); // Keep old behaviour of extends in same line
// If there is only on extends and there are not comments
if ((!n.implements || n.implements.length === 0) && (!n.superClass.comments || n.superClass.comments.length === 0)) {
parts.push(concat$6([" ", path.call(function (superClass) {
return comments.printComments(superClass, function () {
return printed;
}, options);
}, "superClass")]));
} else {
partsGroup.push(group$2(concat$6([line$2, path.call(function (superClass) {
return comments.printComments(superClass, function () {
return printed;
}, options);
}, "superClass")])));
}
} else if (n.extends && n.extends.length > 0) {
parts.push(" extends ", join$4(", ", path.map(print, "extends")));
}
if (n["mixins"] && n["mixins"].length > 0) {
partsGroup.push(line$2, "mixins ", group$2(indent$3(join$4(concat$6([",", line$2]), path.map(print, "mixins")))));
}
if (n["implements"] && n["implements"].length > 0) {
partsGroup.push(line$2, "implements", group$2(indent$3(concat$6([line$2, join$4(concat$6([",", line$2]), path.map(print, "implements"))]))));
}
if (partsGroup.length > 0) {
parts.push(group$2(indent$3(concat$6(partsGroup))));
}
if (n.body && n.body.comments && hasLeadingOwnLineComment$1(options.originalText, n.body, options)) {
parts.push(hardline$4);
} else {
parts.push(" ");
}
parts.push(path.call(print, "body"));
return parts;
}
function printOptionalToken(path) {
var node = path.getValue();
if (!node.optional || // It's an optional computed method parsed by typescript-estree.
// "?" is printed in `printMethod`.
node.type === "Identifier" && node === path.getParentNode().key) {
return "";
}
if (node.type === "OptionalCallExpression" || node.type === "OptionalMemberExpression" && node.computed) {
return "?.";
}
return "?";
}
function printMemberLookup(path, options, print) {
var property = path.call(print, "property");
var n = path.getValue();
var optional = printOptionalToken(path);
if (!n.computed) {
return concat$6([optional, ".", property]);
}
if (!n.property || isNumericLiteral$1(n.property)) {
return concat$6([optional, "[", property, "]"]);
}
return group$2(concat$6([optional, "[", indent$3(concat$6([softline$2, property])), softline$2, "]"]));
}
function printBindExpressionCallee(path, options, print) {
return concat$6(["::", path.call(print, "callee")]);
} // We detect calls on member expressions specially to format a
// common pattern better. The pattern we are looking for is this:
//
// arr
// .map(x => x + 1)
// .filter(x => x > 10)
// .some(x => x % 2)
//
// The way it is structured in the AST is via a nested sequence of
// MemberExpression and CallExpression. We need to traverse the AST
// and make groups out of it to print it in the desired way.
function printMemberChain(path, options, print) {
// The first phase is to linearize the AST by traversing it down.
//
// a().b()
// has the following AST structure:
// CallExpression(MemberExpression(CallExpression(Identifier)))
// and we transform it into
// [Identifier, CallExpression, MemberExpression, CallExpression]
var printedNodes = []; // Here we try to retain one typed empty line after each call expression or
// the first group whether it is in parentheses or not
function shouldInsertEmptyLineAfter(node) {
var originalText = options.originalText;
var nextCharIndex = getNextNonSpaceNonCommentCharacterIndex$2(originalText, node, options);
var nextChar = originalText.charAt(nextCharIndex); // if it is cut off by a parenthesis, we only account for one typed empty
// line after that parenthesis
if (nextChar == ")") {
return isNextLineEmptyAfterIndex$1(originalText, nextCharIndex + 1, options);
}
return isNextLineEmpty$2(originalText, node, options);
}
function rec(path) {
var node = path.getValue();
if ((node.type === "CallExpression" || node.type === "OptionalCallExpression") && (isMemberish$1(node.callee) || node.callee.type === "CallExpression" || node.callee.type === "OptionalCallExpression")) {
printedNodes.unshift({
node: node,
printed: concat$6([comments.printComments(path, function () {
return concat$6([printOptionalToken(path), printFunctionTypeParameters(path, options, print), printArgumentsList(path, options, print)]);
}, options), shouldInsertEmptyLineAfter(node) ? hardline$4 : ""])
});
path.call(function (callee) {
return rec(callee);
}, "callee");
} else if (isMemberish$1(node)) {
printedNodes.unshift({
node: node,
needsParens: needsParens_1(path, options),
printed: comments.printComments(path, function () {
return node.type === "OptionalMemberExpression" || node.type === "MemberExpression" ? printMemberLookup(path, options, print) : printBindExpressionCallee(path, options, print);
}, options)
});
path.call(function (object) {
return rec(object);
}, "object");
} else if (node.type === "TSNonNullExpression") {
printedNodes.unshift({
node: node,
printed: comments.printComments(path, function () {
return "!";
}, options)
});
path.call(function (expression) {
return rec(expression);
}, "expression");
} else {
printedNodes.unshift({
node: node,
printed: path.call(print)
});
}
} // Note: the comments of the root node have already been printed, so we
// need to extract this first call without printing them as they would
// if handled inside of the recursive call.
var node = path.getValue();
printedNodes.unshift({
node,
printed: concat$6([printOptionalToken(path), printFunctionTypeParameters(path, options, print), printArgumentsList(path, options, print)])
});
path.call(function (callee) {
return rec(callee);
}, "callee"); // Once we have a linear list of printed nodes, we want to create groups out
// of it.
//
// a().b.c().d().e
// will be grouped as
// [
// [Identifier, CallExpression],
// [MemberExpression, MemberExpression, CallExpression],
// [MemberExpression, CallExpression],
// [MemberExpression],
// ]
// so that we can print it as
// a()
// .b.c()
// .d()
// .e
// The first group is the first node followed by
// - as many CallExpression as possible
// < fn()()() >.something()
// - as many array accessors as possible
// < fn()[0][1][2] >.something()
// - then, as many MemberExpression as possible but the last one
// < this.items >.something()
var groups = [];
var currentGroup = [printedNodes[0]];
var i = 1;
for (; i < printedNodes.length; ++i) {
if (printedNodes[i].node.type === "TSNonNullExpression" || printedNodes[i].node.type === "OptionalCallExpression" || printedNodes[i].node.type === "CallExpression" || (printedNodes[i].node.type === "MemberExpression" || printedNodes[i].node.type === "OptionalMemberExpression") && printedNodes[i].node.computed && isNumericLiteral$1(printedNodes[i].node.property)) {
currentGroup.push(printedNodes[i]);
} else {
break;
}
}
if (printedNodes[0].node.type !== "CallExpression" && printedNodes[0].node.type !== "OptionalCallExpression") {
for (; i + 1 < printedNodes.length; ++i) {
if (isMemberish$1(printedNodes[i].node) && isMemberish$1(printedNodes[i + 1].node)) {
currentGroup.push(printedNodes[i]);
} else {
break;
}
}
}
groups.push(currentGroup);
currentGroup = []; // Then, each following group is a sequence of MemberExpression followed by
// a sequence of CallExpression. To compute it, we keep adding things to the
// group until we has seen a CallExpression in the past and reach a
// MemberExpression
var hasSeenCallExpression = false;
for (; i < printedNodes.length; ++i) {
if (hasSeenCallExpression && isMemberish$1(printedNodes[i].node)) {
// [0] should be appended at the end of the group instead of the
// beginning of the next one
if (printedNodes[i].node.computed && isNumericLiteral$1(printedNodes[i].node.property)) {
currentGroup.push(printedNodes[i]);
continue;
}
groups.push(currentGroup);
currentGroup = [];
hasSeenCallExpression = false;
}
if (printedNodes[i].node.type === "CallExpression" || printedNodes[i].node.type === "OptionalCallExpression") {
hasSeenCallExpression = true;
}
currentGroup.push(printedNodes[i]);
if (printedNodes[i].node.comments && printedNodes[i].node.comments.some(function (comment) {
return comment.trailing;
})) {
groups.push(currentGroup);
currentGroup = [];
hasSeenCallExpression = false;
}
}
if (currentGroup.length > 0) {
groups.push(currentGroup);
} // There are cases like Object.keys(), Observable.of(), _.values() where
// they are the subject of all the chained calls and therefore should
// be kept on the same line:
//
// Object.keys(items)
// .filter(x => x)
// .map(x => x)
//
// In order to detect those cases, we use an heuristic: if the first
// node is an identifier with the name starting with a capital
// letter or just a sequence of _$. The rationale is that they are
// likely to be factories.
function isFactory(name) {
return /^[A-Z]|^[_$]+$/.test(name);
} // In case the Identifier is shorter than tab width, we can keep the
// first call in a single line, if it's an ExpressionStatement.
//
// d3.scaleLinear()
// .domain([0, 100])
// .range([0, width]);
//
function isShort(name) {
return name.length <= options.tabWidth;
}
function shouldNotWrap(groups) {
var parent = path.getParentNode();
var isExpression = parent && parent.type === "ExpressionStatement";
var hasComputed = groups[1].length && groups[1][0].node.computed;
if (groups[0].length === 1) {
var firstNode = groups[0][0].node;
return firstNode.type === "ThisExpression" || firstNode.type === "Identifier" && (isFactory(firstNode.name) || isExpression && isShort(firstNode.name) || hasComputed);
}
var lastNode = getLast$2(groups[0]).node;
return (lastNode.type === "MemberExpression" || lastNode.type === "OptionalMemberExpression") && lastNode.property.type === "Identifier" && (isFactory(lastNode.property.name) || hasComputed);
}
var shouldMerge = groups.length >= 2 && !groups[1][0].node.comments && shouldNotWrap(groups);
function printGroup(printedGroup) {
var printed = printedGroup.map(function (tuple) {
return tuple.printed;
}); // Checks if the last node (i.e. the parent node) needs parens and print
// accordingly
if (printedGroup.length > 0 && printedGroup[printedGroup.length - 1].needsParens) {
return concat$6(["("].concat(_toConsumableArray$1(printed), [")"]));
}
return concat$6(printed);
}
function printIndentedGroup(groups) {
if (groups.length === 0) {
return "";
}
return indent$3(group$2(concat$6([hardline$4, join$4(hardline$4, groups.map(printGroup))])));
}
var printedGroups = groups.map(printGroup);
var oneLine = concat$6(printedGroups);
var cutoff = shouldMerge ? 3 : 2;
var flatGroups = groups.slice(0, cutoff).reduce(function (res, group) {
return res.concat(group);
}, []);
var hasComment = flatGroups.slice(1, -1).some(function (node) {
return hasLeadingComment$3(node.node);
}) || flatGroups.slice(0, -1).some(function (node) {
return hasTrailingComment$1(node.node);
}) || groups[cutoff] && hasLeadingComment$3(groups[cutoff][0].node); // If we only have a single `.`, we shouldn't do anything fancy and just
// render everything concatenated together.
if (groups.length <= cutoff && !hasComment) {
if (isLongCurriedCallExpression$1(path)) {
return oneLine;
}
return group$2(oneLine);
} // Find out the last node in the first group and check if it has an
// empty line after
var lastNodeBeforeIndent = getLast$2(shouldMerge ? groups.slice(1, 2)[0] : groups[0]).node;
var shouldHaveEmptyLineBeforeIndent = lastNodeBeforeIndent.type !== "CallExpression" && lastNodeBeforeIndent.type !== "OptionalCallExpression" && shouldInsertEmptyLineAfter(lastNodeBeforeIndent);
var expanded = concat$6([printGroup(groups[0]), shouldMerge ? concat$6(groups.slice(1, 2).map(printGroup)) : "", shouldHaveEmptyLineBeforeIndent ? hardline$4 : "", printIndentedGroup(groups.slice(shouldMerge ? 2 : 1))]);
var callExpressions = printedNodes.map(function (_ref) {
var node = _ref.node;
return node;
}).filter(isCallOrOptionalCallExpression$1); // We don't want to print in one line if there's:
// * A comment.
// * 3 or more chained calls.
// * Any group but the last one has a hard line.
// If the last group is a function it's okay to inline if it fits.
if (hasComment || callExpressions.length >= 3 || printedGroups.slice(0, -1).some(willBreak$1) ||
/**
* scopes.filter(scope => scope.value !== '').map((scope, i) => {
* // multi line content
* })
*/
function (lastGroupDoc, lastGroupNode) {
return isCallOrOptionalCallExpression$1(lastGroupNode) && willBreak$1(lastGroupDoc);
}(getLast$2(printedGroups), getLast$2(getLast$2(groups)).node) && callExpressions.slice(0, -1).some(function (n) {
return n.arguments.some(isFunctionOrArrowExpression$1);
})) {
return group$2(expanded);
}
return concat$6([// We only need to check `oneLine` because if `expanded` is chosen
// that means that the parent group has already been broken
// naturally
willBreak$1(oneLine) || shouldHaveEmptyLineBeforeIndent ? breakParent$2 : "", conditionalGroup$1([oneLine, expanded])]);
}
function separatorNoWhitespace(isFacebookTranslationTag, child, childNode, nextNode) {
if (isFacebookTranslationTag) {
return "";
}
if (childNode.type === "JSXElement" && !childNode.closingElement || nextNode && nextNode.type === "JSXElement" && !nextNode.closingElement) {
return child.length === 1 ? softline$2 : hardline$4;
}
return softline$2;
}
function separatorWithWhitespace(isFacebookTranslationTag, child, childNode, nextNode) {
if (isFacebookTranslationTag) {
return hardline$4;
}
if (child.length === 1) {
return childNode.type === "JSXElement" && !childNode.closingElement || nextNode && nextNode.type === "JSXElement" && !nextNode.closingElement ? hardline$4 : softline$2;
}
return hardline$4;
} // JSX Children are strange, mostly for two reasons:
// 1. JSX reads newlines into string values, instead of skipping them like JS
// 2. up to one whitespace between elements within a line is significant,
// but not between lines.
//
// Leading, trailing, and lone whitespace all need to
// turn themselves into the rather ugly `{' '}` when breaking.
//
// We print JSX using the `fill` doc primitive.
// This requires that we give it an array of alternating
// content and whitespace elements.
// To ensure this we add dummy `""` content elements as needed.
function printJSXChildren(path, options, print, jsxWhitespace, isFacebookTranslationTag) {
var n = path.getValue();
var children = []; // using `map` instead of `each` because it provides `i`
path.map(function (childPath, i) {
var child = childPath.getValue();
if (isLiteral$1(child)) {
var text = rawText$1(child); // Contains a non-whitespace character
if (isMeaningfulJSXText$1(child)) {
var words = text.split(matchJsxWhitespaceRegex$1); // Starts with whitespace
if (words[0] === "") {
children.push("");
words.shift();
if (/\n/.test(words[0])) {
var next = n.children[i + 1];
children.push(separatorWithWhitespace(isFacebookTranslationTag, words[1], child, next));
} else {
children.push(jsxWhitespace);
}
words.shift();
}
var endWhitespace; // Ends with whitespace
if (getLast$2(words) === "") {
words.pop();
endWhitespace = words.pop();
} // This was whitespace only without a new line.
if (words.length === 0) {
return;
}
words.forEach(function (word, i) {
if (i % 2 === 1) {
children.push(line$2);
} else {
children.push(word);
}
});
if (endWhitespace !== undefined) {
if (/\n/.test(endWhitespace)) {
var _next = n.children[i + 1];
children.push(separatorWithWhitespace(isFacebookTranslationTag, getLast$2(children), child, _next));
} else {
children.push(jsxWhitespace);
}
} else {
var _next2 = n.children[i + 1];
children.push(separatorNoWhitespace(isFacebookTranslationTag, getLast$2(children), child, _next2));
}
} else if (/\n/.test(text)) {
// Keep (up to one) blank line between tags/expressions/text.
// Note: We don't keep blank lines between text elements.
if (text.match(/\n/g).length > 1) {
children.push("");
children.push(hardline$4);
}
} else {
children.push("");
children.push(jsxWhitespace);
}
} else {
var printedChild = print(childPath);
children.push(printedChild);
var _next3 = n.children[i + 1];
var directlyFollowedByMeaningfulText = _next3 && isMeaningfulJSXText$1(_next3);
if (directlyFollowedByMeaningfulText) {
var firstWord = rawText$1(_next3).trim().split(matchJsxWhitespaceRegex$1)[0];
children.push(separatorNoWhitespace(isFacebookTranslationTag, firstWord, child, _next3));
} else {
children.push(hardline$4);
}
}
}, "children");
return children;
} // JSX expands children from the inside-out, instead of the outside-in.
// This is both to break children before attributes,
// and to ensure that when children break, their parents do as well.
//
// Any element that is written without any newlines and fits on a single line
// is left that way.
// Not only that, any user-written-line containing multiple JSX siblings
// should also be kept on one line if possible,
// so each user-written-line is wrapped in its own group.
//
// Elements that contain newlines or don't fit on a single line (recursively)
// are fully-split, using hardline and shouldBreak: true.
//
// To support that case properly, all leading and trailing spaces
// are stripped from the list of children, and replaced with a single hardline.
function printJSXElement(path, options, print) {
var n = path.getValue();
if (n.type === "JSXElement" && isEmptyJSXElement$1(n)) {
return concat$6([path.call(print, "openingElement"), path.call(print, "closingElement")]);
}
var openingLines = n.type === "JSXElement" ? path.call(print, "openingElement") : path.call(print, "openingFragment");
var closingLines = n.type === "JSXElement" ? path.call(print, "closingElement") : path.call(print, "closingFragment");
if (n.children.length === 1 && n.children[0].type === "JSXExpressionContainer" && (n.children[0].expression.type === "TemplateLiteral" || n.children[0].expression.type === "TaggedTemplateExpression")) {
return concat$6([openingLines, concat$6(path.map(print, "children")), closingLines]);
} // Convert `{" "}` to text nodes containing a space.
// This makes it easy to turn them into `jsxWhitespace` which
// can then print as either a space or `{" "}` when breaking.
n.children = n.children.map(function (child) {
if (isJSXWhitespaceExpression$1(child)) {
return {
type: "JSXText",
value: " ",
raw: " "
};
}
return child;
});
var containsTag = n.children.filter(isJSXNode$1).length > 0;
var containsMultipleExpressions = n.children.filter(function (child) {
return child.type === "JSXExpressionContainer";
}).length > 1;
var containsMultipleAttributes = n.type === "JSXElement" && n.openingElement.attributes.length > 1; // Record any breaks. Should never go from true to false, only false to true.
var forcedBreak = willBreak$1(openingLines) || containsTag || containsMultipleAttributes || containsMultipleExpressions;
var rawJsxWhitespace = options.singleQuote ? "{' '}" : '{" "}';
var jsxWhitespace = ifBreak$1(concat$6([rawJsxWhitespace, softline$2]), " ");
var isFacebookTranslationTag = n.openingElement && n.openingElement.name && n.openingElement.name.name === "fbt";
var children = printJSXChildren(path, options, print, jsxWhitespace, isFacebookTranslationTag);
var containsText = n.children.filter(function (child) {
return isMeaningfulJSXText$1(child);
}).length > 0; // We can end up we multiple whitespace elements with empty string
// content between them.
// We need to remove empty whitespace and softlines before JSX whitespace
// to get the correct output.
for (var i = children.length - 2; i >= 0; i--) {
var isPairOfEmptyStrings = children[i] === "" && children[i + 1] === "";
var isPairOfHardlines = children[i] === hardline$4 && children[i + 1] === "" && children[i + 2] === hardline$4;
var isLineFollowedByJSXWhitespace = (children[i] === softline$2 || children[i] === hardline$4) && children[i + 1] === "" && children[i + 2] === jsxWhitespace;
var isJSXWhitespaceFollowedByLine = children[i] === jsxWhitespace && children[i + 1] === "" && (children[i + 2] === softline$2 || children[i + 2] === hardline$4);
var isDoubleJSXWhitespace = children[i] === jsxWhitespace && children[i + 1] === "" && children[i + 2] === jsxWhitespace;
var isPairOfHardOrSoftLines = children[i] === softline$2 && children[i + 1] === "" && children[i + 2] === hardline$4 || children[i] === hardline$4 && children[i + 1] === "" && children[i + 2] === softline$2;
if (isPairOfHardlines && containsText || isPairOfEmptyStrings || isLineFollowedByJSXWhitespace || isDoubleJSXWhitespace || isPairOfHardOrSoftLines) {
children.splice(i, 2);
} else if (isJSXWhitespaceFollowedByLine) {
children.splice(i + 1, 2);
}
} // Trim trailing lines (or empty strings)
while (children.length && (isLineNext$1(getLast$2(children)) || isEmpty$1(getLast$2(children)))) {
children.pop();
} // Trim leading lines (or empty strings)
while (children.length && (isLineNext$1(children[0]) || isEmpty$1(children[0])) && (isLineNext$1(children[1]) || isEmpty$1(children[1]))) {
children.shift();
children.shift();
} // Tweak how we format children if outputting this element over multiple lines.
// Also detect whether we will force this element to output over multiple lines.
var multilineChildren = [];
children.forEach(function (child, i) {
// There are a number of situations where we need to ensure we display
// whitespace as `{" "}` when outputting this element over multiple lines.
if (child === jsxWhitespace) {
if (i === 1 && children[i - 1] === "") {
if (children.length === 2) {
// Solitary whitespace
multilineChildren.push(rawJsxWhitespace);
return;
} // Leading whitespace
multilineChildren.push(concat$6([rawJsxWhitespace, hardline$4]));
return;
} else if (i === children.length - 1) {
// Trailing whitespace
multilineChildren.push(rawJsxWhitespace);
return;
} else if (children[i - 1] === "" && children[i - 2] === hardline$4) {
// Whitespace after line break
multilineChildren.push(rawJsxWhitespace);
return;
}
}
multilineChildren.push(child);
if (willBreak$1(child)) {
forcedBreak = true;
}
}); // If there is text we use `fill` to fit as much onto each line as possible.
// When there is no text (just tags and expressions) we use `group`
// to output each on a separate line.
var content = containsText ? fill$2(multilineChildren) : group$2(concat$6(multilineChildren), {
shouldBreak: true
});
var multiLineElem = group$2(concat$6([openingLines, indent$3(concat$6([hardline$4, content])), hardline$4, closingLines]));
if (forcedBreak) {
return multiLineElem;
}
return conditionalGroup$1([group$2(concat$6([openingLines, concat$6(children), closingLines])), multiLineElem]);
}
function maybeWrapJSXElementInParens(path, elem, options) {
var parent = path.getParentNode();
if (!parent) {
return elem;
}
var NO_WRAP_PARENTS = {
ArrayExpression: true,
JSXAttribute: true,
JSXElement: true,
JSXExpressionContainer: true,
JSXFragment: true,
ExpressionStatement: true,
CallExpression: true,
OptionalCallExpression: true,
ConditionalExpression: true,
JsExpressionRoot: true
};
if (NO_WRAP_PARENTS[parent.type]) {
return elem;
}
var shouldBreak = matchAncestorTypes$1(path, ["ArrowFunctionExpression", "CallExpression", "JSXExpressionContainer"]) || matchAncestorTypes$1(path, ["ArrowFunctionExpression", "OptionalCallExpression", "JSXExpressionContainer"]);
var needsParens = needsParens_1(path, options);
return group$2(concat$6([needsParens ? "" : ifBreak$1("("), indent$3(concat$6([softline$2, elem])), softline$2, needsParens ? "" : ifBreak$1(")")]), {
shouldBreak
});
}
function shouldInlineLogicalExpression(node) {
if (node.type !== "LogicalExpression") {
return false;
}
if (node.right.type === "ObjectExpression" && node.right.properties.length !== 0) {
return true;
}
if (node.right.type === "ArrayExpression" && node.right.elements.length !== 0) {
return true;
}
if (isJSXNode$1(node.right)) {
return true;
}
return false;
} // For binary expressions to be consistent, we need to group
// subsequent operators with the same precedence level under a single
// group. Otherwise they will be nested such that some of them break
// onto new lines but not all. Operators with the same precedence
// level should either all break or not. Because we group them by
// precedence level and the AST is structured based on precedence
// level, things are naturally broken up correctly, i.e. `&&` is
// broken before `+`.
function printBinaryishExpressions(path, print, options, isNested, isInsideParenthesis) {
var parts = [];
var node = path.getValue(); // We treat BinaryExpression and LogicalExpression nodes the same.
if (isBinaryish$1(node)) {
// Put all operators with the same precedence level in the same
// group. The reason we only need to do this with the `left`
// expression is because given an expression like `1 + 2 - 3`, it
// is always parsed like `((1 + 2) - 3)`, meaning the `left` side
// is where the rest of the expression will exist. Binary
// expressions on the right side mean they have a difference
// precedence level and should be treated as a separate group, so
// print them normally. (This doesn't hold for the `**` operator,
// which is unique in that it is right-associative.)
if (shouldFlatten$1(node.operator, node.left.operator)) {
// Flatten them out by recursively calling this function.
parts = parts.concat(path.call(function (left) {
return printBinaryishExpressions(left, print, options,
/* isNested */
true, isInsideParenthesis);
}, "left"));
} else {
parts.push(path.call(print, "left"));
}
var shouldInline = shouldInlineLogicalExpression(node);
var lineBeforeOperator = (node.operator === "|>" || node.type === "NGPipeExpression" || node.operator === "|" && options.parser === "__vue_expression") && !hasLeadingOwnLineComment$1(options.originalText, node.right, options);
var operator = node.type === "NGPipeExpression" ? "|" : node.operator;
var rightSuffix = node.type === "NGPipeExpression" && node.arguments.length !== 0 ? group$2(indent$3(concat$6([softline$2, ": ", join$4(concat$6([softline$2, ":", ifBreak$1(" ")]), path.map(print, "arguments").map(function (arg) {
return align$1(2, group$2(arg));
}))]))) : "";
var right = shouldInline ? concat$6([operator, " ", path.call(print, "right"), rightSuffix]) : concat$6([lineBeforeOperator ? softline$2 : "", operator, lineBeforeOperator ? " " : line$2, path.call(print, "right"), rightSuffix]); // If there's only a single binary expression, we want to create a group
// in order to avoid having a small right part like -1 be on its own line.
var parent = path.getParentNode();
var shouldGroup = !(isInsideParenthesis && node.type === "LogicalExpression") && parent.type !== node.type && node.left.type !== node.type && node.right.type !== node.type;
parts.push(" ", shouldGroup ? group$2(right) : right); // The root comments are already printed, but we need to manually print
// the other ones since we don't call the normal print on BinaryExpression,
// only for the left and right parts
if (isNested && node.comments) {
parts = comments.printComments(path, function () {
return concat$6(parts);
}, options);
}
} else {
// Our stopping case. Simply print the node normally.
parts.push(path.call(print));
}
return parts;
}
function printAssignmentRight(leftNode, rightNode, printedRight, options) {
if (hasLeadingOwnLineComment$1(options.originalText, rightNode, options)) {
return indent$3(concat$6([hardline$4, printedRight]));
}
var canBreak = isBinaryish$1(rightNode) && !shouldInlineLogicalExpression(rightNode) || rightNode.type === "ConditionalExpression" && isBinaryish$1(rightNode.test) && !shouldInlineLogicalExpression(rightNode.test) || rightNode.type === "StringLiteralTypeAnnotation" || rightNode.type === "ClassExpression" && rightNode.decorators && rightNode.decorators.length || (leftNode.type === "Identifier" || isStringLiteral$1(leftNode) || leftNode.type === "MemberExpression") && (isStringLiteral$1(rightNode) || isMemberExpressionChain$1(rightNode)) && // do not put values on a separate line from the key in json
options.parser !== "json" && options.parser !== "json5" || rightNode.type === "SequenceExpression";
if (canBreak) {
return group$2(indent$3(concat$6([line$2, printedRight])));
}
return concat$6([" ", printedRight]);
}
function printAssignment(leftNode, printedLeft, operator, rightNode, printedRight, options) {
if (!rightNode) {
return printedLeft;
}
var printed = printAssignmentRight(leftNode, rightNode, printedRight, options);
return group$2(concat$6([printedLeft, operator, printed]));
}
function adjustClause(node, clause, forceSpace) {
if (node.type === "EmptyStatement") {
return ";";
}
if (node.type === "BlockStatement" || forceSpace) {
return concat$6([" ", clause]);
}
return indent$3(concat$6([line$2, clause]));
}
function nodeStr(node, options, isFlowOrTypeScriptDirectiveLiteral) {
var raw = rawText$1(node);
var isDirectiveLiteral = isFlowOrTypeScriptDirectiveLiteral || node.type === "DirectiveLiteral";
return printString$1(raw, options, isDirectiveLiteral);
}
function printRegex(node) {
var flags = node.flags.split("").sort().join("");
return `/${node.pattern}/${flags}`;
}
function exprNeedsASIProtection(path, options) {
var node = path.getValue();
var maybeASIProblem = needsParens_1(path, options) || node.type === "ParenthesizedExpression" || node.type === "TypeCastExpression" || node.type === "ArrowFunctionExpression" && !shouldPrintParamsWithoutParens(path, options) || node.type === "ArrayExpression" || node.type === "ArrayPattern" || node.type === "UnaryExpression" && node.prefix && (node.operator === "+" || node.operator === "-") || node.type === "TemplateLiteral" || node.type === "TemplateElement" || isJSXNode$1(node) || node.type === "BindExpression" && !node.object || node.type === "RegExpLiteral" || node.type === "Literal" && node.pattern || node.type === "Literal" && node.regex;
if (maybeASIProblem) {
return true;
}
if (!hasNakedLeftSide$2(node)) {
return false;
}
return path.call.apply(path, [function (childPath) {
return exprNeedsASIProtection(childPath, options);
}].concat(getLeftSidePathName$2(path, node)));
}
function stmtNeedsASIProtection(path, options) {
var node = path.getNode();
if (node.type !== "ExpressionStatement") {
return false;
}
return path.call(function (childPath) {
return exprNeedsASIProtection(childPath, options);
}, "expression");
}
function shouldHugType(node) {
if (isSimpleFlowType$1(node) || isObjectType$1(node)) {
return true;
}
if (node.type === "UnionTypeAnnotation" || node.type === "TSUnionType") {
var voidCount = node.types.filter(function (n) {
return n.type === "VoidTypeAnnotation" || n.type === "TSVoidKeyword" || n.type === "NullLiteralTypeAnnotation" || n.type === "TSNullKeyword";
}).length;
var objectCount = node.types.filter(function (n) {
return n.type === "ObjectTypeAnnotation" || n.type === "TSTypeLiteral" || // This is a bit aggressive but captures Array<{x}>
n.type === "GenericTypeAnnotation" || n.type === "TSTypeReference";
}).length;
if (node.types.length - 1 === voidCount && objectCount > 0) {
return true;
}
}
return false;
}
function shouldHugArguments(fun) {
return fun && fun.params && fun.params.length === 1 && !fun.params[0].comments && (fun.params[0].type === "ObjectPattern" || fun.params[0].type === "ArrayPattern" || fun.params[0].type === "Identifier" && fun.params[0].typeAnnotation && (fun.params[0].typeAnnotation.type === "TypeAnnotation" || fun.params[0].typeAnnotation.type === "TSTypeAnnotation") && isObjectType$1(fun.params[0].typeAnnotation.typeAnnotation) || fun.params[0].type === "FunctionTypeParam" && isObjectType$1(fun.params[0].typeAnnotation) || fun.params[0].type === "AssignmentPattern" && (fun.params[0].left.type === "ObjectPattern" || fun.params[0].left.type === "ArrayPattern") && (fun.params[0].right.type === "Identifier" || fun.params[0].right.type === "ObjectExpression" && fun.params[0].right.properties.length === 0 || fun.params[0].right.type === "ArrayExpression" && fun.params[0].right.elements.length === 0)) && !fun.rest;
}
function printArrayItems(path, options, printPath, print) {
var printedElements = [];
var separatorParts = [];
path.each(function (childPath) {
printedElements.push(concat$6(separatorParts));
printedElements.push(group$2(print(childPath)));
separatorParts = [",", line$2];
if (childPath.getValue() && isNextLineEmpty$2(options.originalText, childPath.getValue(), options)) {
separatorParts.push(softline$2);
}
}, printPath);
return concat$6(printedElements);
}
function willPrintOwnComments(path
/*, options */
) {
var node = path.getValue();
var parent = path.getParentNode();
return (node && (isJSXNode$1(node) || hasFlowShorthandAnnotationComment$2(node) || parent && (parent.type === "CallExpression" || parent.type === "OptionalCallExpression") && (hasFlowAnnotationComment$1(node.leadingComments) || hasFlowAnnotationComment$1(node.trailingComments))) || parent && (parent.type === "JSXSpreadAttribute" || parent.type === "JSXSpreadChild" || parent.type === "UnionTypeAnnotation" || parent.type === "TSUnionType" || (parent.type === "ClassDeclaration" || parent.type === "ClassExpression") && parent.superClass === node)) && !hasIgnoreComment$2(path);
}
function canAttachComment(node) {
return node.type && node.type !== "CommentBlock" && node.type !== "CommentLine" && node.type !== "Line" && node.type !== "Block" && node.type !== "EmptyStatement" && node.type !== "TemplateElement" && node.type !== "Import";
}
function printComment$1(commentPath, options) {
var comment = commentPath.getValue();
switch (comment.type) {
case "CommentBlock":
case "Block":
{
if (isIndentableBlockComment(comment)) {
var printed = printIndentableBlockComment(comment); // We need to prevent an edge case of a previous trailing comment
// printed as a `lineSuffix` which causes the comments to be
// interleaved. See https://github.com/prettier/prettier/issues/4412
if (comment.trailing && !hasNewline$3(options.originalText, options.locStart(comment), {
backwards: true
})) {
return concat$6([hardline$4, printed]);
}
return printed;
}
var isInsideFlowComment = options.originalText.substr(options.locEnd(comment) - 3, 3) === "*-/";
return "/*" + comment.value + (isInsideFlowComment ? "*-/" : "*/");
}
case "CommentLine":
case "Line":
// Print shebangs with the proper comment characters
if (options.originalText.slice(options.locStart(comment)).startsWith("#!")) {
return "#!" + comment.value.trimRight();
}
return "//" + comment.value.trimRight();
default:
throw new Error("Not a comment: " + JSON.stringify(comment));
}
}
function isIndentableBlockComment(comment) {
// If the comment has multiple lines and every line starts with a star
// we can fix the indentation of each line. The stars in the `/*` and
// `*/` delimiters are not included in the comment value, so add them
// back first.
var lines = `*${comment.value}*`.split("\n");
return lines.length > 1 && lines.every(function (line) {
return line.trim()[0] === "*";
});
}
function printIndentableBlockComment(comment) {
var lines = comment.value.split("\n");
return concat$6(["/*", join$4(hardline$4, lines.map(function (line, index) {
return index === 0 ? line.trimRight() : " " + (index < lines.length - 1 ? line.trim() : line.trimLeft());
})), "*/"]);
}
var printerEstree = {
preprocess: preprocess_1,
print: genericPrint,
embed: embed_1,
insertPragma: insertPragma$1,
massageAstNode: clean_1,
hasPrettierIgnore: hasPrettierIgnore$1,
willPrintOwnComments,
canAttachComment,
printComment: printComment$1,
isBlockComment: comments$1.isBlockComment,
handleComments: {
ownLine: comments$1.handleOwnLineComment,
endOfLine: comments$1.handleEndOfLineComment,
remaining: comments$1.handleRemainingComment
}
};
var _require$$0$builders$2 = doc.builders,
concat$7 = _require$$0$builders$2.concat,
hardline$5 = _require$$0$builders$2.hardline,
indent$4 = _require$$0$builders$2.indent,
join$5 = _require$$0$builders$2.join;
function genericPrint$1(path, options, print) {
var node = path.getValue();
switch (node.type) {
case "JsonRoot":
return concat$7([path.call(print, "node"), hardline$5]);
case "ArrayExpression":
return node.elements.length === 0 ? "[]" : concat$7(["[", indent$4(concat$7([hardline$5, join$5(concat$7([",", hardline$5]), path.map(print, "elements"))])), hardline$5, "]"]);
case "ObjectExpression":
return node.properties.length === 0 ? "{}" : concat$7(["{", indent$4(concat$7([hardline$5, join$5(concat$7([",", hardline$5]), path.map(print, "properties"))])), hardline$5, "}"]);
case "ObjectProperty":
return concat$7([path.call(print, "key"), ": ", path.call(print, "value")]);
case "UnaryExpression":
return concat$7([node.operator === "+" ? "" : node.operator, path.call(print, "argument")]);
case "NullLiteral":
return "null";
case "BooleanLiteral":
return node.value ? "true" : "false";
case "StringLiteral":
case "NumericLiteral":
return JSON.stringify(node.value);
case "Identifier":
return JSON.stringify(node.name);
default:
/* istanbul ignore next */
throw new Error("unknown type: " + JSON.stringify(node.type));
}
}
function clean$1(node, newNode
/*, parent*/
) {
delete newNode.start;
delete newNode.end;
delete newNode.extra;
delete newNode.loc;
delete newNode.comments;
delete newNode.errors;
if (node.type === "Identifier") {
return {
type: "StringLiteral",
value: node.name
};
}
if (node.type === "UnaryExpression" && node.operator === "+") {
return newNode.argument;
}
}
var printerEstreeJson = {
preprocess: preprocess_1,
print: genericPrint$1,
massageAstNode: clean$1
};
var CATEGORY_COMMON = "Common"; // format based on https://github.com/prettier/prettier/blob/master/src/main/core-options.js
var commonOptions = {
bracketSpacing: {
since: "0.0.0",
category: CATEGORY_COMMON,
type: "boolean",
default: true,
description: "Print spaces between brackets.",
oppositeDescription: "Do not print spaces between brackets."
},
singleQuote: {
since: "0.0.0",
category: CATEGORY_COMMON,
type: "boolean",
default: false,
description: "Use single quotes instead of double quotes."
},
proseWrap: {
since: "1.8.2",
category: CATEGORY_COMMON,
type: "choice",
default: [{
since: "1.8.2",
value: true
}, {
since: "1.9.0",
value: "preserve"
}],
description: "How to wrap prose.",
choices: [{
since: "1.9.0",
value: "always",
description: "Wrap prose if it exceeds the print width."
}, {
since: "1.9.0",
value: "never",
description: "Do not wrap prose."
}, {
since: "1.9.0",
value: "preserve",
description: "Wrap prose as-is."
}, {
value: false,
deprecated: "1.9.0",
redirect: "never"
}, {
value: true,
deprecated: "1.9.0",
redirect: "always"
}]
}
};
var CATEGORY_JAVASCRIPT = "JavaScript"; // format based on https://github.com/prettier/prettier/blob/master/src/main/core-options.js
var options$2 = {
arrowParens: {
since: "1.9.0",
category: CATEGORY_JAVASCRIPT,
type: "choice",
default: "avoid",
description: "Include parentheses around a sole arrow function parameter.",
choices: [{
value: "avoid",
description: "Omit parens when possible. Example: `x => x`"
}, {
value: "always",
description: "Always include parens. Example: `(x) => x`"
}]
},
bracketSpacing: commonOptions.bracketSpacing,
jsxBracketSameLine: {
since: "0.17.0",
category: CATEGORY_JAVASCRIPT,
type: "boolean",
default: false,
description: "Put > on the last line instead of at a new line."
},
semi: {
since: "1.0.0",
category: CATEGORY_JAVASCRIPT,
type: "boolean",
default: true,
description: "Print semicolons.",
oppositeDescription: "Do not print semicolons, except at the beginning of lines which may need them."
},
singleQuote: commonOptions.singleQuote,
jsxSingleQuote: {
since: "1.15.0",
category: CATEGORY_JAVASCRIPT,
type: "boolean",
default: false,
description: "Use single quotes in JSX."
},
quoteProps: {
since: "1.17.0",
category: CATEGORY_JAVASCRIPT,
type: "choice",
default: "as-needed",
description: "Change when properties in objects are quoted.",
choices: [{
value: "as-needed",
description: "Only add quotes around object properties where required."
}, {
value: "consistent",
description: "If at least one property in an object requires quotes, quote all properties."
}, {
value: "preserve",
description: "Respect the input use of quotes in object properties."
}]
},
trailingComma: {
since: "0.0.0",
category: CATEGORY_JAVASCRIPT,
type: "choice",
default: [{
since: "0.0.0",
value: false
}, {
since: "0.19.0",
value: "none"
}],
description: "Print trailing commas wherever possible when multi-line.",
choices: [{
value: "none",
description: "No trailing commas."
}, {
value: "es5",
description: "Trailing commas where valid in ES5 (objects, arrays, etc.)"
}, {
value: "all",
description: "Trailing commas wherever possible (including function arguments)."
}, {
value: true,
deprecated: "0.19.0",
redirect: "es5"
}, {
value: false,
deprecated: "0.19.0",
redirect: "none"
}]
}
};
var createLanguage = function createLanguage(linguistData, transform) {
var language = {};
for (var key in linguistData) {
var newKey = key === "languageId" ? "linguistLanguageId" : key;
language[newKey] = linguistData[key];
}
return transform(language);
};
var name$2 = "JavaScript";
var type = "programming";
var tmScope = "source.js";
var aceMode = "javascript";
var codemirrorMode = "javascript";
var codemirrorMimeType = "text/javascript";
var color = "#f1e05a";
var aliases = [
"js",
"node"
];
var extensions = [
".js",
"._js",
".bones",
".es",
".es6",
".frag",
".gs",
".jake",
".jsb",
".jscad",
".jsfl",
".jsm",
".jss",
".mjs",
".njs",
".pac",
".sjs",
".ssjs",
".xsjs",
".xsjslib"
];
var filenames = [
"Jakefile"
];
var interpreters = [
"chakra",
"d8",
"js",
"node",
"rhino",
"v8",
"v8-shell"
];
var languageId = 183;
var JavaScript = {
name: name$2,
type: type,
tmScope: tmScope,
aceMode: aceMode,
codemirrorMode: codemirrorMode,
codemirrorMimeType: codemirrorMimeType,
color: color,
aliases: aliases,
extensions: extensions,
filenames: filenames,
interpreters: interpreters,
languageId: languageId
};
var JavaScript$1 = /*#__PURE__*/Object.freeze({
__proto__: null,
name: name$2,
type: type,
tmScope: tmScope,
aceMode: aceMode,
codemirrorMode: codemirrorMode,
codemirrorMimeType: codemirrorMimeType,
color: color,
aliases: aliases,
extensions: extensions,
filenames: filenames,
interpreters: interpreters,
languageId: languageId,
'default': JavaScript
});
var name$3 = "JSX";
var type$1 = "programming";
var group$3 = "JavaScript";
var extensions$1 = [
".jsx"
];
var tmScope$1 = "source.js.jsx";
var aceMode$1 = "javascript";
var codemirrorMode$1 = "jsx";
var codemirrorMimeType$1 = "text/jsx";
var languageId$1 = 178;
var JSX = {
name: name$3,
type: type$1,
group: group$3,
extensions: extensions$1,
tmScope: tmScope$1,
aceMode: aceMode$1,
codemirrorMode: codemirrorMode$1,
codemirrorMimeType: codemirrorMimeType$1,
languageId: languageId$1
};
var JSX$1 = /*#__PURE__*/Object.freeze({
__proto__: null,
name: name$3,
type: type$1,
group: group$3,
extensions: extensions$1,
tmScope: tmScope$1,
aceMode: aceMode$1,
codemirrorMode: codemirrorMode$1,
codemirrorMimeType: codemirrorMimeType$1,
languageId: languageId$1,
'default': JSX
});
var name$4 = "TypeScript";
var type$2 = "programming";
var color$1 = "#2b7489";
var aliases$1 = [
"ts"
];
var interpreters$1 = [
"deno",
"ts-node"
];
var extensions$2 = [
".ts"
];
var tmScope$2 = "source.ts";
var aceMode$2 = "typescript";
var codemirrorMode$2 = "javascript";
var codemirrorMimeType$2 = "application/typescript";
var languageId$2 = 378;
var TypeScript = {
name: name$4,
type: type$2,
color: color$1,
aliases: aliases$1,
interpreters: interpreters$1,
extensions: extensions$2,
tmScope: tmScope$2,
aceMode: aceMode$2,
codemirrorMode: codemirrorMode$2,
codemirrorMimeType: codemirrorMimeType$2,
languageId: languageId$2
};
var TypeScript$1 = /*#__PURE__*/Object.freeze({
__proto__: null,
name: name$4,
type: type$2,
color: color$1,
aliases: aliases$1,
interpreters: interpreters$1,
extensions: extensions$2,
tmScope: tmScope$2,
aceMode: aceMode$2,
codemirrorMode: codemirrorMode$2,
codemirrorMimeType: codemirrorMimeType$2,
languageId: languageId$2,
'default': TypeScript
});
var name$5 = "TSX";
var type$3 = "programming";
var group$4 = "TypeScript";
var extensions$3 = [
".tsx"
];
var tmScope$3 = "source.tsx";
var aceMode$3 = "javascript";
var codemirrorMode$3 = "jsx";
var codemirrorMimeType$3 = "text/jsx";
var languageId$3 = 94901924;
var TSX = {
name: name$5,
type: type$3,
group: group$4,
extensions: extensions$3,
tmScope: tmScope$3,
aceMode: aceMode$3,
codemirrorMode: codemirrorMode$3,
codemirrorMimeType: codemirrorMimeType$3,
languageId: languageId$3
};
var TSX$1 = /*#__PURE__*/Object.freeze({
__proto__: null,
name: name$5,
type: type$3,
group: group$4,
extensions: extensions$3,
tmScope: tmScope$3,
aceMode: aceMode$3,
codemirrorMode: codemirrorMode$3,
codemirrorMimeType: codemirrorMimeType$3,
languageId: languageId$3,
'default': TSX
});
var name$6 = "JSON";
var type$4 = "data";
var tmScope$4 = "source.json";
var aceMode$4 = "json";
var codemirrorMode$4 = "javascript";
var codemirrorMimeType$4 = "application/json";
var searchable = false;
var extensions$4 = [
".json",
".avsc",
".geojson",
".gltf",
".har",
".ice",
".JSON-tmLanguage",
".jsonl",
".mcmeta",
".tfstate",
".tfstate.backup",
".topojson",
".webapp",
".webmanifest",
".yy",
".yyp"
];
var filenames$1 = [
".arcconfig",
".htmlhintrc",
".tern-config",
".tern-project",
".watchmanconfig",
"composer.lock",
"mcmod.info"
];
var languageId$4 = 174;
var _JSON = {
name: name$6,
type: type$4,
tmScope: tmScope$4,
aceMode: aceMode$4,
codemirrorMode: codemirrorMode$4,
codemirrorMimeType: codemirrorMimeType$4,
searchable: searchable,
extensions: extensions$4,
filenames: filenames$1,
languageId: languageId$4
};
var _JSON$1 = /*#__PURE__*/Object.freeze({
__proto__: null,
name: name$6,
type: type$4,
tmScope: tmScope$4,
aceMode: aceMode$4,
codemirrorMode: codemirrorMode$4,
codemirrorMimeType: codemirrorMimeType$4,
searchable: searchable,
extensions: extensions$4,
filenames: filenames$1,
languageId: languageId$4,
'default': _JSON
});
var name$7 = "JSON with Comments";
var type$5 = "data";
var group$5 = "JSON";
var tmScope$5 = "source.js";
var aceMode$5 = "javascript";
var codemirrorMode$5 = "javascript";
var codemirrorMimeType$5 = "text/javascript";
var aliases$2 = [
"jsonc"
];
var extensions$5 = [
".sublime-build",
".sublime-commands",
".sublime-completions",
".sublime-keymap",
".sublime-macro",
".sublime-menu",
".sublime-mousemap",
".sublime-project",
".sublime-settings",
".sublime-theme",
".sublime-workspace",
".sublime_metrics",
".sublime_session"
];
var filenames$2 = [
".babelrc",
".eslintrc.json",
".jscsrc",
".jshintrc",
".jslintrc",
"jsconfig.json",
"language-configuration.json",
"tsconfig.json"
];
var languageId$5 = 423;
var JSON_with_Comments = {
name: name$7,
type: type$5,
group: group$5,
tmScope: tmScope$5,
aceMode: aceMode$5,
codemirrorMode: codemirrorMode$5,
codemirrorMimeType: codemirrorMimeType$5,
aliases: aliases$2,
extensions: extensions$5,
filenames: filenames$2,
languageId: languageId$5
};
var JSON_with_Comments$1 = /*#__PURE__*/Object.freeze({
__proto__: null,
name: name$7,
type: type$5,
group: group$5,
tmScope: tmScope$5,
aceMode: aceMode$5,
codemirrorMode: codemirrorMode$5,
codemirrorMimeType: codemirrorMimeType$5,
aliases: aliases$2,
extensions: extensions$5,
filenames: filenames$2,
languageId: languageId$5,
'default': JSON_with_Comments
});
var name$8 = "JSON5";
var type$6 = "data";
var extensions$6 = [
".json5"
];
var tmScope$6 = "source.js";
var aceMode$6 = "javascript";
var codemirrorMode$6 = "javascript";
var codemirrorMimeType$6 = "application/json";
var languageId$6 = 175;
var JSON5 = {
name: name$8,
type: type$6,
extensions: extensions$6,
tmScope: tmScope$6,
aceMode: aceMode$6,
codemirrorMode: codemirrorMode$6,
codemirrorMimeType: codemirrorMimeType$6,
languageId: languageId$6
};
var JSON5$1 = /*#__PURE__*/Object.freeze({
__proto__: null,
name: name$8,
type: type$6,
extensions: extensions$6,
tmScope: tmScope$6,
aceMode: aceMode$6,
codemirrorMode: codemirrorMode$6,
codemirrorMimeType: codemirrorMimeType$6,
languageId: languageId$6,
'default': JSON5
});
var require$$0$1 = getCjsExportFromNamespace(JavaScript$1);
var require$$1 = getCjsExportFromNamespace(JSX$1);
var require$$2 = getCjsExportFromNamespace(TypeScript$1);
var require$$3 = getCjsExportFromNamespace(TSX$1);
var require$$4$1 = getCjsExportFromNamespace(_JSON$1);
var require$$5 = getCjsExportFromNamespace(JSON_with_Comments$1);
var require$$6 = getCjsExportFromNamespace(JSON5$1);
var languages = [createLanguage(require$$0$1, function (data) {
return Object.assign(data, {
since: "0.0.0",
parsers: ["babel", "flow"],
vscodeLanguageIds: ["javascript", "mongo"],
interpreters: data.interpreters.concat(["nodejs"])
});
}), createLanguage(require$$0$1, function (data) {
return Object.assign(data, {
name: "Flow",
since: "0.0.0",
parsers: ["babel", "flow"],
vscodeLanguageIds: ["javascript"],
aliases: [],
filenames: [],
extensions: [".js.flow"]
});
}), createLanguage(require$$1, function (data) {
return Object.assign(data, {
since: "0.0.0",
parsers: ["babel", "flow"],
vscodeLanguageIds: ["javascriptreact"]
});
}), createLanguage(require$$2, function (data) {
return Object.assign(data, {
since: "1.4.0",
parsers: ["typescript"],
vscodeLanguageIds: ["typescript"]
});
}), createLanguage(require$$3, function (data) {
return Object.assign(data, {
since: "1.4.0",
parsers: ["typescript"],
vscodeLanguageIds: ["typescriptreact"]
});
}), createLanguage(require$$4$1, function (data) {
return Object.assign(data, {
name: "JSON.stringify",
since: "1.13.0",
parsers: ["json-stringify"],
vscodeLanguageIds: ["json"],
extensions: [],
// .json file defaults to json instead of json-stringify
filenames: ["package.json", "package-lock.json", "composer.json"]
});
}), createLanguage(require$$4$1, function (data) {
return Object.assign(data, {
since: "1.5.0",
parsers: ["json"],
vscodeLanguageIds: ["json"],
filenames: data.filenames.concat([".prettierrc"])
});
}), createLanguage(require$$5, function (data) {
return Object.assign(data, {
since: "1.5.0",
parsers: ["json"],
vscodeLanguageIds: ["jsonc"],
filenames: data.filenames.concat([".eslintrc"])
});
}), createLanguage(require$$6, function (data) {
return Object.assign(data, {
since: "1.13.0",
parsers: ["json5"],
vscodeLanguageIds: ["json5"]
});
})];
var printers = {
estree: printerEstree,
"estree-json": printerEstreeJson
};
var languageJs = {
languages,
options: options$2,
printers
};
var index = [
"a",
"abbr",
"acronym",
"address",
"applet",
"area",
"article",
"aside",
"audio",
"b",
"base",
"basefont",
"bdi",
"bdo",
"bgsound",
"big",
"blink",
"blockquote",
"body",
"br",
"button",
"canvas",
"caption",
"center",
"cite",
"code",
"col",
"colgroup",
"command",
"content",
"data",
"datalist",
"dd",
"del",
"details",
"dfn",
"dialog",
"dir",
"div",
"dl",
"dt",
"element",
"em",
"embed",
"fieldset",
"figcaption",
"figure",
"font",
"footer",
"form",
"frame",
"frameset",
"h1",
"h2",
"h3",
"h4",
"h5",
"h6",
"head",
"header",
"hgroup",
"hr",
"html",
"i",
"iframe",
"image",
"img",
"input",
"ins",
"isindex",
"kbd",
"keygen",
"label",
"legend",
"li",
"link",
"listing",
"main",
"map",
"mark",
"marquee",
"math",
"menu",
"menuitem",
"meta",
"meter",
"multicol",
"nav",
"nextid",
"nobr",
"noembed",
"noframes",
"noscript",
"object",
"ol",
"optgroup",
"option",
"output",
"p",
"param",
"picture",
"plaintext",
"pre",
"progress",
"q",
"rb",
"rbc",
"rp",
"rt",
"rtc",
"ruby",
"s",
"samp",
"script",
"section",
"select",
"shadow",
"slot",
"small",
"source",
"spacer",
"span",
"strike",
"strong",
"style",
"sub",
"summary",
"sup",
"svg",
"table",
"tbody",
"td",
"template",
"textarea",
"tfoot",
"th",
"thead",
"time",
"title",
"tr",
"track",
"tt",
"u",
"ul",
"var",
"video",
"wbr",
"xmp"
];
var htmlTagNames = /*#__PURE__*/Object.freeze({
__proto__: null,
'default': index
});
var htmlTagNames$1 = getCjsExportFromNamespace(htmlTagNames);
function clean$2(ast, newObj, parent) {
["raw", // front-matter
"raws", "sourceIndex", "source", "before", "after", "trailingComma"].forEach(function (name) {
delete newObj[name];
});
if (ast.type === "yaml") {
delete newObj.value;
} // --insert-pragma
if (ast.type === "css-comment" && parent.type === "css-root" && parent.nodes.length !== 0 && ( // first non-front-matter comment
parent.nodes[0] === ast || (parent.nodes[0].type === "yaml" || parent.nodes[0].type === "toml") && parent.nodes[1] === ast)) {
/**
* something
*
* @format
*/
delete newObj.text; // standalone pragma
if (/^\*\s*@(format|prettier)\s*$/.test(ast.text)) {
return null;
}
}
if (ast.type === "media-query" || ast.type === "media-query-list" || ast.type === "media-feature-expression") {
delete newObj.value;
}
if (ast.type === "css-rule") {
delete newObj.params;
}
if (ast.type === "selector-combinator") {
newObj.value = newObj.value.replace(/\s+/g, " ");
}
if (ast.type === "media-feature") {
newObj.value = newObj.value.replace(/ /g, "");
}
if (ast.type === "value-word" && (ast.isColor && ast.isHex || ["initial", "inherit", "unset", "revert"].indexOf(newObj.value.replace().toLowerCase()) !== -1) || ast.type === "media-feature" || ast.type === "selector-root-invalid" || ast.type === "selector-pseudo") {
newObj.value = newObj.value.toLowerCase();
}
if (ast.type === "css-decl") {
newObj.prop = newObj.prop.toLowerCase();
}
if (ast.type === "css-atrule" || ast.type === "css-import") {
newObj.name = newObj.name.toLowerCase();
}
if (ast.type === "value-number") {
newObj.unit = newObj.unit.toLowerCase();
}
if ((ast.type === "media-feature" || ast.type === "media-keyword" || ast.type === "media-type" || ast.type === "media-unknown" || ast.type === "media-url" || ast.type === "media-value" || ast.type === "selector-attribute" || ast.type === "selector-string" || ast.type === "selector-class" || ast.type === "selector-combinator" || ast.type === "value-string") && newObj.value) {
newObj.value = cleanCSSStrings(newObj.value);
}
if (ast.type === "selector-attribute") {
newObj.attribute = newObj.attribute.trim();
if (newObj.namespace) {
if (typeof newObj.namespace === "string") {
newObj.namespace = newObj.namespace.trim();
if (newObj.namespace.length === 0) {
newObj.namespace = true;
}
}
}
if (newObj.value) {
newObj.value = newObj.value.trim().replace(/^['"]|['"]$/g, "");
delete newObj.quoted;
}
}
if ((ast.type === "media-value" || ast.type === "media-type" || ast.type === "value-number" || ast.type === "selector-root-invalid" || ast.type === "selector-class" || ast.type === "selector-combinator" || ast.type === "selector-tag") && newObj.value) {
newObj.value = newObj.value.replace(/([\d.eE+-]+)([a-zA-Z]*)/g, function (match, numStr, unit) {
var num = Number(numStr);
return isNaN(num) ? match : num + unit.toLowerCase();
});
}
if (ast.type === "selector-tag") {
var lowercasedValue = ast.value.toLowerCase();
if (htmlTagNames$1.indexOf(lowercasedValue) !== -1) {
newObj.value = lowercasedValue;
}
if (["from", "to"].indexOf(lowercasedValue) !== -1) {
newObj.value = lowercasedValue;
}
} // Workaround when `postcss-values-parser` parse `not`, `and` or `or` keywords as `value-func`
if (ast.type === "css-atrule" && ast.name.toLowerCase() === "supports") {
delete newObj.value;
} // Workaround for SCSS nested properties
if (ast.type === "selector-unknown") {
delete newObj.value;
}
}
function cleanCSSStrings(value) {
return value.replace(/'/g, '"').replace(/\\([^a-fA-F\d])/g, "$1");
}
var clean_1$1 = clean$2;
var _require$$0$builders$3 = doc.builders,
hardline$6 = _require$$0$builders$3.hardline,
literalline$3 = _require$$0$builders$3.literalline,
concat$8 = _require$$0$builders$3.concat,
markAsRoot$1 = _require$$0$builders$3.markAsRoot,
mapDoc$4 = doc.utils.mapDoc;
function embed$1(path, print, textToDoc
/*, options */
) {
var node = path.getValue();
if (node.type === "yaml") {
return markAsRoot$1(concat$8(["---", hardline$6, node.value.trim() ? replaceNewlinesWithLiterallines(textToDoc(node.value, {
parser: "yaml"
})) : "", "---", hardline$6]));
}
return null;
function replaceNewlinesWithLiterallines(doc) {
return mapDoc$4(doc, function (currentDoc) {
return typeof currentDoc === "string" && currentDoc.includes("\n") ? concat$8(currentDoc.split(/(\n)/g).map(function (v, i) {
return i % 2 === 0 ? v : literalline$3;
})) : currentDoc;
});
}
}
var embed_1$1 = embed$1;
var DELIMITER_MAP = {
"---": "yaml",
"+++": "toml"
};
function parse$3(text) {
var delimiterRegex = Object.keys(DELIMITER_MAP).map(escapeStringRegexp).join("|");
var match = text.match( // trailing spaces after delimiters are allowed
new RegExp(`^(${delimiterRegex})[^\\n\\S]*\\n(?:([\\s\\S]*?)\\n)?\\1[^\\n\\S]*(\\n|$)`));
if (match === null) {
return {
frontMatter: null,
content: text
};
}
var raw = match[0].replace(/\n$/, "");
var delimiter = match[1];
var value = match[2];
return {
frontMatter: {
type: DELIMITER_MAP[delimiter],
value,
raw
},
content: match[0].replace(/[^\n]/g, " ") + text.slice(match[0].length)
};
}
var frontMatter = parse$3;
function hasPragma$1(text) {
return pragma.hasPragma(frontMatter(text).content);
}
function insertPragma$2(text) {
var _parseFrontMatter = frontMatter(text),
frontMatter$1 = _parseFrontMatter.frontMatter,
content = _parseFrontMatter.content;
return (frontMatter$1 ? frontMatter$1.raw + "\n\n" : "") + pragma.insertPragma(content);
}
var pragma$1 = {
hasPragma: hasPragma$1,
insertPragma: insertPragma$2
};
var colorAdjusterFunctions = ["red", "green", "blue", "alpha", "a", "rgb", "hue", "h", "saturation", "s", "lightness", "l", "whiteness", "w", "blackness", "b", "tint", "shade", "blend", "blenda", "contrast", "hsl", "hsla", "hwb", "hwba"];
function getAncestorCounter(path, typeOrTypes) {
var types = [].concat(typeOrTypes);
var counter = -1;
var ancestorNode;
while (ancestorNode = path.getParentNode(++counter)) {
if (types.indexOf(ancestorNode.type) !== -1) {
return counter;
}
}
return -1;
}
function getAncestorNode(path, typeOrTypes) {
var counter = getAncestorCounter(path, typeOrTypes);
return counter === -1 ? null : path.getParentNode(counter);
}
function getPropOfDeclNode(path) {
var declAncestorNode = getAncestorNode(path, "css-decl");
return declAncestorNode && declAncestorNode.prop && declAncestorNode.prop.toLowerCase();
}
function isSCSS(parser, text) {
var hasExplicitParserChoice = parser === "less" || parser === "scss";
var IS_POSSIBLY_SCSS = /(\w\s*: [^}:]+|#){|@import[^\n]+(url|,)/;
return hasExplicitParserChoice ? parser === "scss" : IS_POSSIBLY_SCSS.test(text);
}
function isWideKeywords(value) {
return ["initial", "inherit", "unset", "revert"].indexOf(value.toLowerCase()) !== -1;
}
function isKeyframeAtRuleKeywords(path, value) {
var atRuleAncestorNode = getAncestorNode(path, "css-atrule");
return atRuleAncestorNode && atRuleAncestorNode.name && atRuleAncestorNode.name.toLowerCase().endsWith("keyframes") && ["from", "to"].indexOf(value.toLowerCase()) !== -1;
}
function maybeToLowerCase(value) {
return value.includes("$") || value.includes("@") || value.includes("#") || value.startsWith("%") || value.startsWith("--") || value.startsWith(":--") || value.includes("(") && value.includes(")") ? value : value.toLowerCase();
}
function insideValueFunctionNode(path, functionName) {
var funcAncestorNode = getAncestorNode(path, "value-func");
return funcAncestorNode && funcAncestorNode.value && funcAncestorNode.value.toLowerCase() === functionName;
}
function insideICSSRuleNode(path) {
var ruleAncestorNode = getAncestorNode(path, "css-rule");
return ruleAncestorNode && ruleAncestorNode.raws && ruleAncestorNode.raws.selector && (ruleAncestorNode.raws.selector.startsWith(":import") || ruleAncestorNode.raws.selector.startsWith(":export"));
}
function insideAtRuleNode(path, atRuleNameOrAtRuleNames) {
var atRuleNames = [].concat(atRuleNameOrAtRuleNames);
var atRuleAncestorNode = getAncestorNode(path, "css-atrule");
return atRuleAncestorNode && atRuleNames.indexOf(atRuleAncestorNode.name.toLowerCase()) !== -1;
}
function insideURLFunctionInImportAtRuleNode(path) {
var node = path.getValue();
var atRuleAncestorNode = getAncestorNode(path, "css-atrule");
return atRuleAncestorNode && atRuleAncestorNode.name === "import" && node.groups[0].value === "url" && node.groups.length === 2;
}
function isURLFunctionNode(node) {
return node.type === "value-func" && node.value.toLowerCase() === "url";
}
function isLastNode(path, node) {
var parentNode = path.getParentNode();
if (!parentNode) {
return false;
}
var nodes = parentNode.nodes;
return nodes && nodes.indexOf(node) === nodes.length - 1;
}
function isHTMLTag(value) {
return htmlTagNames$1.indexOf(value.toLowerCase()) !== -1;
}
function isDetachedRulesetDeclarationNode(node) {
// If a Less file ends up being parsed with the SCSS parser, Less
// variable declarations will be parsed as atrules with names ending
// with a colon, so keep the original case then.
if (!node.selector) {
return false;
}
return typeof node.selector === "string" && /^@.+:.*$/.test(node.selector) || node.selector.value && /^@.+:.*$/.test(node.selector.value);
}
function isForKeywordNode(node) {
return node.type === "value-word" && ["from", "through", "end"].indexOf(node.value) !== -1;
}
function isIfElseKeywordNode(node) {
return node.type === "value-word" && ["and", "or", "not"].indexOf(node.value) !== -1;
}
function isEachKeywordNode(node) {
return node.type === "value-word" && node.value === "in";
}
function isMultiplicationNode(node) {
return node.type === "value-operator" && node.value === "*";
}
function isDivisionNode(node) {
return node.type === "value-operator" && node.value === "/";
}
function isAdditionNode(node) {
return node.type === "value-operator" && node.value === "+";
}
function isSubtractionNode(node) {
return node.type === "value-operator" && node.value === "-";
}
function isModuloNode(node) {
return node.type === "value-operator" && node.value === "%";
}
function isMathOperatorNode(node) {
return isMultiplicationNode(node) || isDivisionNode(node) || isAdditionNode(node) || isSubtractionNode(node) || isModuloNode(node);
}
function isEqualityOperatorNode(node) {
return node.type === "value-word" && ["==", "!="].indexOf(node.value) !== -1;
}
function isRelationalOperatorNode(node) {
return node.type === "value-word" && ["<", ">", "<=", ">="].indexOf(node.value) !== -1;
}
function isSCSSControlDirectiveNode(node) {
return node.type === "css-atrule" && ["if", "else", "for", "each", "while"].indexOf(node.name) !== -1;
}
function isSCSSNestedPropertyNode(node) {
if (!node.selector) {
return false;
}
return node.selector.replace(/\/\*.*?\*\//, "").replace(/\/\/.*?\n/, "").trim().endsWith(":");
}
function isDetachedRulesetCallNode(node) {
return node.raws && node.raws.params && /^\(\s*\)$/.test(node.raws.params);
}
function isTemplatePlaceholderNode(node) {
return node.name.startsWith("prettier-placeholder");
}
function isTemplatePropNode(node) {
return node.prop.startsWith("@prettier-placeholder");
}
function isPostcssSimpleVarNode(currentNode, nextNode) {
return currentNode.value === "$$" && currentNode.type === "value-func" && nextNode && nextNode.type === "value-word" && !nextNode.raws.before;
}
function hasComposesNode(node) {
return node.value && node.value.type === "value-root" && node.value.group && node.value.group.type === "value-value" && node.prop.toLowerCase() === "composes";
}
function hasParensAroundNode(node) {
return node.value && node.value.group && node.value.group.group && node.value.group.group.type === "value-paren_group" && node.value.group.group.open !== null && node.value.group.group.close !== null;
}
function hasEmptyRawBefore(node) {
return node.raws && node.raws.before === "";
}
function isKeyValuePairNode(node) {
return node.type === "value-comma_group" && node.groups && node.groups[1] && node.groups[1].type === "value-colon";
}
function isKeyValuePairInParenGroupNode(node) {
return node.type === "value-paren_group" && node.groups && node.groups[0] && isKeyValuePairNode(node.groups[0]);
}
function isSCSSMapItemNode(path) {
var node = path.getValue(); // Ignore empty item (i.e. `$key: ()`)
if (node.groups.length === 0) {
return false;
}
var parentParentNode = path.getParentNode(1); // Check open parens contain key/value pair (i.e. `(key: value)` and `(key: (value, other-value)`)
if (!isKeyValuePairInParenGroupNode(node) && !(parentParentNode && isKeyValuePairInParenGroupNode(parentParentNode))) {
return false;
}
var declNode = getAncestorNode(path, "css-decl"); // SCSS map declaration (i.e. `$map: (key: value, other-key: other-value)`)
if (declNode && declNode.prop && declNode.prop.startsWith("$")) {
return true;
} // List as value of key inside SCSS map (i.e. `$map: (key: (value other-value other-other-value))`)
if (isKeyValuePairInParenGroupNode(parentParentNode)) {
return true;
} // SCSS Map is argument of function (i.e. `func((key: value, other-key: other-value))`)
if (parentParentNode.type === "value-func") {
return true;
}
return false;
}
function isInlineValueCommentNode(node) {
return node.type === "value-comment" && node.inline;
}
function isHashNode(node) {
return node.type === "value-word" && node.value === "#";
}
function isLeftCurlyBraceNode(node) {
return node.type === "value-word" && node.value === "{";
}
function isRightCurlyBraceNode(node) {
return node.type === "value-word" && node.value === "}";
}
function isWordNode(node) {
return ["value-word", "value-atword"].indexOf(node.type) !== -1;
}
function isColonNode(node) {
return node.type === "value-colon";
}
function isMediaAndSupportsKeywords(node) {
return node.value && ["not", "and", "or"].indexOf(node.value.toLowerCase()) !== -1;
}
function isColorAdjusterFuncNode(node) {
if (node.type !== "value-func") {
return false;
}
return colorAdjusterFunctions.indexOf(node.value.toLowerCase()) !== -1;
}
var utils$3 = {
getAncestorCounter,
getAncestorNode,
getPropOfDeclNode,
maybeToLowerCase,
insideValueFunctionNode,
insideICSSRuleNode,
insideAtRuleNode,
insideURLFunctionInImportAtRuleNode,
isKeyframeAtRuleKeywords,
isHTMLTag,
isWideKeywords,
isSCSS,
isLastNode,
isSCSSControlDirectiveNode,
isDetachedRulesetDeclarationNode,
isRelationalOperatorNode,
isEqualityOperatorNode,
isMultiplicationNode,
isDivisionNode,
isAdditionNode,
isSubtractionNode,
isModuloNode,
isMathOperatorNode,
isEachKeywordNode,
isForKeywordNode,
isURLFunctionNode,
isIfElseKeywordNode,
hasComposesNode,
hasParensAroundNode,
hasEmptyRawBefore,
isSCSSNestedPropertyNode,
isDetachedRulesetCallNode,
isTemplatePlaceholderNode,
isTemplatePropNode,
isPostcssSimpleVarNode,
isKeyValuePairNode,
isKeyValuePairInParenGroupNode,
isSCSSMapItemNode,
isInlineValueCommentNode,
isHashNode,
isLeftCurlyBraceNode,
isRightCurlyBraceNode,
isWordNode,
isColonNode,
isMediaAndSupportsKeywords,
isColorAdjusterFuncNode
};
var insertPragma$3 = pragma$1.insertPragma;
var printNumber$2 = util.printNumber,
printString$2 = util.printString,
hasIgnoreComment$3 = util.hasIgnoreComment,
hasNewline$4 = util.hasNewline;
var isNextLineEmpty$3 = utilShared.isNextLineEmpty;
var _require$$3$builders = doc.builders,
concat$9 = _require$$3$builders.concat,
join$6 = _require$$3$builders.join,
line$3 = _require$$3$builders.line,
hardline$7 = _require$$3$builders.hardline,
softline$3 = _require$$3$builders.softline,
group$6 = _require$$3$builders.group,
fill$3 = _require$$3$builders.fill,
indent$5 = _require$$3$builders.indent,
dedent$2 = _require$$3$builders.dedent,
ifBreak$2 = _require$$3$builders.ifBreak,
removeLines$2 = doc.utils.removeLines;
var getAncestorNode$1 = utils$3.getAncestorNode,
getPropOfDeclNode$1 = utils$3.getPropOfDeclNode,
maybeToLowerCase$1 = utils$3.maybeToLowerCase,
insideValueFunctionNode$1 = utils$3.insideValueFunctionNode,
insideICSSRuleNode$1 = utils$3.insideICSSRuleNode,
insideAtRuleNode$1 = utils$3.insideAtRuleNode,
insideURLFunctionInImportAtRuleNode$1 = utils$3.insideURLFunctionInImportAtRuleNode,
isKeyframeAtRuleKeywords$1 = utils$3.isKeyframeAtRuleKeywords,
isHTMLTag$1 = utils$3.isHTMLTag,
isWideKeywords$1 = utils$3.isWideKeywords,
isSCSS$1 = utils$3.isSCSS,
isLastNode$1 = utils$3.isLastNode,
isSCSSControlDirectiveNode$1 = utils$3.isSCSSControlDirectiveNode,
isDetachedRulesetDeclarationNode$1 = utils$3.isDetachedRulesetDeclarationNode,
isRelationalOperatorNode$1 = utils$3.isRelationalOperatorNode,
isEqualityOperatorNode$1 = utils$3.isEqualityOperatorNode,
isMultiplicationNode$1 = utils$3.isMultiplicationNode,
isDivisionNode$1 = utils$3.isDivisionNode,
isAdditionNode$1 = utils$3.isAdditionNode,
isSubtractionNode$1 = utils$3.isSubtractionNode,
isMathOperatorNode$1 = utils$3.isMathOperatorNode,
isEachKeywordNode$1 = utils$3.isEachKeywordNode,
isForKeywordNode$1 = utils$3.isForKeywordNode,
isURLFunctionNode$1 = utils$3.isURLFunctionNode,
isIfElseKeywordNode$1 = utils$3.isIfElseKeywordNode,
hasComposesNode$1 = utils$3.hasComposesNode,
hasParensAroundNode$1 = utils$3.hasParensAroundNode,
hasEmptyRawBefore$1 = utils$3.hasEmptyRawBefore,
isKeyValuePairNode$1 = utils$3.isKeyValuePairNode,
isDetachedRulesetCallNode$1 = utils$3.isDetachedRulesetCallNode,
isTemplatePlaceholderNode$1 = utils$3.isTemplatePlaceholderNode,
isTemplatePropNode$1 = utils$3.isTemplatePropNode,
isPostcssSimpleVarNode$1 = utils$3.isPostcssSimpleVarNode,
isSCSSMapItemNode$1 = utils$3.isSCSSMapItemNode,
isInlineValueCommentNode$1 = utils$3.isInlineValueCommentNode,
isHashNode$1 = utils$3.isHashNode,
isLeftCurlyBraceNode$1 = utils$3.isLeftCurlyBraceNode,
isRightCurlyBraceNode$1 = utils$3.isRightCurlyBraceNode,
isWordNode$1 = utils$3.isWordNode,
isColonNode$1 = utils$3.isColonNode,
isMediaAndSupportsKeywords$1 = utils$3.isMediaAndSupportsKeywords,
isColorAdjusterFuncNode$1 = utils$3.isColorAdjusterFuncNode;
function shouldPrintComma$1(options) {
switch (options.trailingComma) {
case "all":
case "es5":
return true;
case "none":
default:
return false;
}
}
function genericPrint$2(path, options, print) {
var node = path.getValue();
/* istanbul ignore if */
if (!node) {
return "";
}
if (typeof node === "string") {
return node;
}
switch (node.type) {
case "yaml":
case "toml":
return concat$9([node.raw, hardline$7]);
case "css-root":
{
var nodes = printNodeSequence(path, options, print);
if (nodes.parts.length) {
return concat$9([nodes, hardline$7]);
}
return nodes;
}
case "css-comment":
{
if (node.raws.content) {
return node.raws.content;
}
var text = options.originalText.slice(options.locStart(node), options.locEnd(node));
var rawText = node.raws.text || node.text; // Workaround a bug where the location is off.
// https://github.com/postcss/postcss-scss/issues/63
if (text.indexOf(rawText) === -1) {
if (node.raws.inline) {
return concat$9(["// ", rawText]);
}
return concat$9(["/* ", rawText, " */"]);
}
return text;
}
case "css-rule":
{
return concat$9([path.call(print, "selector"), node.important ? " !important" : "", node.nodes ? concat$9([" {", node.nodes.length > 0 ? indent$5(concat$9([hardline$7, printNodeSequence(path, options, print)])) : "", hardline$7, "}", isDetachedRulesetDeclarationNode$1(node) ? ";" : ""]) : ";"]);
}
case "css-decl":
{
var parentNode = path.getParentNode();
return concat$9([node.raws.before.replace(/[\s;]/g, ""), insideICSSRuleNode$1(path) ? node.prop : maybeToLowerCase$1(node.prop), node.raws.between.trim() === ":" ? ":" : node.raws.between.trim(), node.extend ? "" : " ", hasComposesNode$1(node) ? removeLines$2(path.call(print, "value")) : path.call(print, "value"), node.raws.important ? node.raws.important.replace(/\s*!\s*important/i, " !important") : node.important ? " !important" : "", node.raws.scssDefault ? node.raws.scssDefault.replace(/\s*!default/i, " !default") : node.scssDefault ? " !default" : "", node.raws.scssGlobal ? node.raws.scssGlobal.replace(/\s*!global/i, " !global") : node.scssGlobal ? " !global" : "", node.nodes ? concat$9([" {", indent$5(concat$9([softline$3, printNodeSequence(path, options, print)])), softline$3, "}"]) : isTemplatePropNode$1(node) && !parentNode.raws.semicolon && options.originalText[options.locEnd(node) - 1] !== ";" ? "" : ";"]);
}
case "css-atrule":
{
var _parentNode = path.getParentNode();
return concat$9(["@", // If a Less file ends up being parsed with the SCSS parser, Less
// variable declarations will be parsed as at-rules with names ending
// with a colon, so keep the original case then.
isDetachedRulesetCallNode$1(node) || node.name.endsWith(":") ? node.name : maybeToLowerCase$1(node.name), node.params ? concat$9([isDetachedRulesetCallNode$1(node) ? "" : isTemplatePlaceholderNode$1(node) && /^\s*\n/.test(node.raws.afterName) ? /^\s*\n\s*\n/.test(node.raws.afterName) ? concat$9([hardline$7, hardline$7]) : hardline$7 : " ", path.call(print, "params")]) : "", node.selector ? indent$5(concat$9([" ", path.call(print, "selector")])) : "", node.value ? group$6(concat$9([" ", path.call(print, "value"), isSCSSControlDirectiveNode$1(node) ? hasParensAroundNode$1(node) ? " " : line$3 : ""])) : node.name === "else" ? " " : "", node.nodes ? concat$9([isSCSSControlDirectiveNode$1(node) ? "" : " ", "{", indent$5(concat$9([node.nodes.length > 0 ? softline$3 : "", printNodeSequence(path, options, print)])), softline$3, "}"]) : isTemplatePlaceholderNode$1(node) && !_parentNode.raws.semicolon && options.originalText[options.locEnd(node) - 1] !== ";" ? "" : ";"]);
}
// postcss-media-query-parser
case "media-query-list":
{
var parts = [];
path.each(function (childPath) {
var node = childPath.getValue();
if (node.type === "media-query" && node.value === "") {
return;
}
parts.push(childPath.call(print));
}, "nodes");
return group$6(indent$5(join$6(line$3, parts)));
}
case "media-query":
{
return concat$9([join$6(" ", path.map(print, "nodes")), isLastNode$1(path, node) ? "" : ","]);
}
case "media-type":
{
return adjustNumbers(adjustStrings(node.value, options));
}
case "media-feature-expression":
{
if (!node.nodes) {
return node.value;
}
return concat$9(["(", concat$9(path.map(print, "nodes")), ")"]);
}
case "media-feature":
{
return maybeToLowerCase$1(adjustStrings(node.value.replace(/ +/g, " "), options));
}
case "media-colon":
{
return concat$9([node.value, " "]);
}
case "media-value":
{
return adjustNumbers(adjustStrings(node.value, options));
}
case "media-keyword":
{
return adjustStrings(node.value, options);
}
case "media-url":
{
return adjustStrings(node.value.replace(/^url\(\s+/gi, "url(").replace(/\s+\)$/gi, ")"), options);
}
case "media-unknown":
{
return node.value;
}
// postcss-selector-parser
case "selector-root":
{
return group$6(concat$9([insideAtRuleNode$1(path, "custom-selector") ? concat$9([getAncestorNode$1(path, "css-atrule").customSelector, line$3]) : "", join$6(concat$9([",", insideAtRuleNode$1(path, ["extend", "custom-selector", "nest"]) ? line$3 : hardline$7]), path.map(print, "nodes"))]));
}
case "selector-selector":
{
return group$6(indent$5(concat$9(path.map(print, "nodes"))));
}
case "selector-comment":
{
return node.value;
}
case "selector-string":
{
return adjustStrings(node.value, options);
}
case "selector-tag":
{
var _parentNode2 = path.getParentNode();
var index = _parentNode2 && _parentNode2.nodes.indexOf(node);
var prevNode = index && _parentNode2.nodes[index - 1];
return concat$9([node.namespace ? concat$9([node.namespace === true ? "" : node.namespace.trim(), "|"]) : "", prevNode.type === "selector-nesting" ? node.value : adjustNumbers(isHTMLTag$1(node.value) || isKeyframeAtRuleKeywords$1(path, node.value) ? node.value.toLowerCase() : node.value)]);
}
case "selector-id":
{
return concat$9(["#", node.value]);
}
case "selector-class":
{
return concat$9([".", adjustNumbers(adjustStrings(node.value, options))]);
}
case "selector-attribute":
{
return concat$9(["[", node.namespace ? concat$9([node.namespace === true ? "" : node.namespace.trim(), "|"]) : "", node.attribute.trim(), node.operator ? node.operator : "", node.value ? quoteAttributeValue(adjustStrings(node.value.trim(), options), options) : "", node.insensitive ? " i" : "", "]"]);
}
case "selector-combinator":
{
if (node.value === "+" || node.value === ">" || node.value === "~" || node.value === ">>>") {
var _parentNode3 = path.getParentNode();
var _leading = _parentNode3.type === "selector-selector" && _parentNode3.nodes[0] === node ? "" : line$3;
return concat$9([_leading, node.value, isLastNode$1(path, node) ? "" : " "]);
}
var leading = node.value.trim().startsWith("(") ? line$3 : "";
var value = adjustNumbers(adjustStrings(node.value.trim(), options)) || line$3;
return concat$9([leading, value]);
}
case "selector-universal":
{
return concat$9([node.namespace ? concat$9([node.namespace === true ? "" : node.namespace.trim(), "|"]) : "", node.value]);
}
case "selector-pseudo":
{
return concat$9([maybeToLowerCase$1(node.value), node.nodes && node.nodes.length > 0 ? concat$9(["(", join$6(", ", path.map(print, "nodes")), ")"]) : ""]);
}
case "selector-nesting":
{
return node.value;
}
case "selector-unknown":
{
var ruleAncestorNode = getAncestorNode$1(path, "css-rule"); // Nested SCSS property
if (ruleAncestorNode && ruleAncestorNode.isSCSSNesterProperty) {
return adjustNumbers(adjustStrings(maybeToLowerCase$1(node.value), options));
}
return node.value;
}
// postcss-values-parser
case "value-value":
case "value-root":
{
return path.call(print, "group");
}
case "value-comment":
{
return concat$9([node.inline ? "//" : "/*", node.value, node.inline ? "" : "*/"]);
}
case "value-comma_group":
{
var _parentNode4 = path.getParentNode();
var parentParentNode = path.getParentNode(1);
var declAncestorProp = getPropOfDeclNode$1(path);
var isGridValue = declAncestorProp && _parentNode4.type === "value-value" && (declAncestorProp === "grid" || declAncestorProp.startsWith("grid-template"));
var atRuleAncestorNode = getAncestorNode$1(path, "css-atrule");
var isControlDirective = atRuleAncestorNode && isSCSSControlDirectiveNode$1(atRuleAncestorNode);
var printed = path.map(print, "groups");
var _parts = [];
var insideURLFunction = insideValueFunctionNode$1(path, "url");
var insideSCSSInterpolationInString = false;
var didBreak = false;
for (var i = 0; i < node.groups.length; ++i) {
_parts.push(printed[i]); // Ignore value inside `url()`
if (insideURLFunction) {
continue;
}
var iPrevNode = node.groups[i - 1];
var iNode = node.groups[i];
var iNextNode = node.groups[i + 1];
var iNextNextNode = node.groups[i + 2]; // Ignore after latest node (i.e. before semicolon)
if (!iNextNode) {
continue;
} // Ignore spaces before/after string interpolation (i.e. `"#{my-fn("_")}"`)
var isStartSCSSInterpolationInString = iNode.type === "value-string" && iNode.value.startsWith("#{");
var isEndingSCSSInterpolationInString = insideSCSSInterpolationInString && iNextNode.type === "value-string" && iNextNode.value.endsWith("}");
if (isStartSCSSInterpolationInString || isEndingSCSSInterpolationInString) {
insideSCSSInterpolationInString = !insideSCSSInterpolationInString;
continue;
}
if (insideSCSSInterpolationInString) {
continue;
} // Ignore colon (i.e. `:`)
if (isColonNode$1(iNode) || isColonNode$1(iNextNode)) {
continue;
} // Ignore `@` in Less (i.e. `@@var;`)
if (iNode.type === "value-atword" && iNode.value === "") {
continue;
} // Ignore `~` in Less (i.e. `content: ~"^//* some horrible but needed css hack";`)
if (iNode.value === "~") {
continue;
} // Ignore escape `\`
if (iNode.value && iNode.value.indexOf("\\") !== -1 && iNextNode && iNextNode.type !== "value-comment") {
continue;
} // Ignore escaped `/`
if (iPrevNode && iPrevNode.value && iPrevNode.value.indexOf("\\") === iPrevNode.value.length - 1 && iNode.type === "value-operator" && iNode.value === "/") {
continue;
} // Ignore `\` (i.e. `$variable: \@small;`)
if (iNode.value === "\\") {
continue;
} // Ignore `$$` (i.e. `background-color: $$(style)Color;`)
if (isPostcssSimpleVarNode$1(iNode, iNextNode)) {
continue;
} // Ignore spaces after `#` and after `{` and before `}` in SCSS interpolation (i.e. `#{variable}`)
if (isHashNode$1(iNode) || isLeftCurlyBraceNode$1(iNode) || isRightCurlyBraceNode$1(iNextNode) || isLeftCurlyBraceNode$1(iNextNode) && hasEmptyRawBefore$1(iNextNode) || isRightCurlyBraceNode$1(iNode) && hasEmptyRawBefore$1(iNextNode)) {
continue;
} // Ignore css variables and interpolation in SCSS (i.e. `--#{$var}`)
if (iNode.value === "--" && isHashNode$1(iNextNode)) {
continue;
} // Formatting math operations
var isMathOperator = isMathOperatorNode$1(iNode);
var isNextMathOperator = isMathOperatorNode$1(iNextNode); // Print spaces before and after math operators beside SCSS interpolation as is
// (i.e. `#{$var}+5`, `#{$var} +5`, `#{$var}+ 5`, `#{$var} + 5`)
// (i.e. `5+#{$var}`, `5 +#{$var}`, `5+ #{$var}`, `5 + #{$var}`)
if ((isMathOperator && isHashNode$1(iNextNode) || isNextMathOperator && isRightCurlyBraceNode$1(iNode)) && hasEmptyRawBefore$1(iNextNode)) {
continue;
} // Print spaces before and after addition and subtraction math operators as is in `calc` function
// due to the fact that it is not valid syntax
// (i.e. `calc(1px+1px)`, `calc(1px+ 1px)`, `calc(1px +1px)`, `calc(1px + 1px)`)
if (insideValueFunctionNode$1(path, "calc") && (isAdditionNode$1(iNode) || isAdditionNode$1(iNextNode) || isSubtractionNode$1(iNode) || isSubtractionNode$1(iNextNode)) && hasEmptyRawBefore$1(iNextNode)) {
continue;
} // Print spaces after `+` and `-` in color adjuster functions as is (e.g. `color(red l(+ 20%))`)
// Adjusters with signed numbers (e.g. `color(red l(+20%))`) output as-is.
var isColorAdjusterNode = (isAdditionNode$1(iNode) || isSubtractionNode$1(iNode)) && i === 0 && (iNextNode.type === "value-number" || iNextNode.isHex) && parentParentNode && isColorAdjusterFuncNode$1(parentParentNode) && !hasEmptyRawBefore$1(iNextNode);
var requireSpaceBeforeOperator = iNextNextNode && iNextNextNode.type === "value-func" || iNextNextNode && isWordNode$1(iNextNextNode) || iNode.type === "value-func" || isWordNode$1(iNode);
var requireSpaceAfterOperator = iNextNode.type === "value-func" || isWordNode$1(iNextNode) || iPrevNode && iPrevNode.type === "value-func" || iPrevNode && isWordNode$1(iPrevNode); // Formatting `/`, `+`, `-` sign
if (!(isMultiplicationNode$1(iNextNode) || isMultiplicationNode$1(iNode)) && !insideValueFunctionNode$1(path, "calc") && !isColorAdjusterNode && (isDivisionNode$1(iNextNode) && !requireSpaceBeforeOperator || isDivisionNode$1(iNode) && !requireSpaceAfterOperator || isAdditionNode$1(iNextNode) && !requireSpaceBeforeOperator || isAdditionNode$1(iNode) && !requireSpaceAfterOperator || isSubtractionNode$1(iNextNode) || isSubtractionNode$1(iNode)) && (hasEmptyRawBefore$1(iNextNode) || isMathOperator && (!iPrevNode || iPrevNode && isMathOperatorNode$1(iPrevNode)))) {
continue;
} // Add `hardline` after inline comment (i.e. `// comment\n foo: bar;`)
if (isInlineValueCommentNode$1(iNode)) {
_parts.push(hardline$7);
continue;
} // Handle keywords in SCSS control directive
if (isControlDirective && (isEqualityOperatorNode$1(iNextNode) || isRelationalOperatorNode$1(iNextNode) || isIfElseKeywordNode$1(iNextNode) || isEachKeywordNode$1(iNode) || isForKeywordNode$1(iNode))) {
_parts.push(" ");
continue;
} // At-rule `namespace` should be in one line
if (atRuleAncestorNode && atRuleAncestorNode.name.toLowerCase() === "namespace") {
_parts.push(" ");
continue;
} // Formatting `grid` property
if (isGridValue) {
if (iNode.source && iNextNode.source && iNode.source.start.line !== iNextNode.source.start.line) {
_parts.push(hardline$7);
didBreak = true;
} else {
_parts.push(" ");
}
continue;
} // Add `space` before next math operation
// Note: `grip` property have `/` delimiter and it is not math operation, so
// `grid` property handles above
if (isNextMathOperator) {
_parts.push(" ");
continue;
} // Be default all values go through `line`
_parts.push(line$3);
}
if (didBreak) {
_parts.unshift(hardline$7);
}
if (isControlDirective) {
return group$6(indent$5(concat$9(_parts)));
} // Indent is not needed for import url when url is very long
// and node has two groups
// when type is value-comma_group
// example @import url("verylongurl") projection,tv
if (insideURLFunctionInImportAtRuleNode$1(path)) {
return group$6(fill$3(_parts));
}
return group$6(indent$5(fill$3(_parts)));
}
case "value-paren_group":
{
var _parentNode5 = path.getParentNode();
if (_parentNode5 && isURLFunctionNode$1(_parentNode5) && (node.groups.length === 1 || node.groups.length > 0 && node.groups[0].type === "value-comma_group" && node.groups[0].groups.length > 0 && node.groups[0].groups[0].type === "value-word" && node.groups[0].groups[0].value.startsWith("data:"))) {
return concat$9([node.open ? path.call(print, "open") : "", join$6(",", path.map(print, "groups")), node.close ? path.call(print, "close") : ""]);
}
if (!node.open) {
var _printed = path.map(print, "groups");
var res = [];
for (var _i = 0; _i < _printed.length; _i++) {
if (_i !== 0) {
res.push(concat$9([",", line$3]));
}
res.push(_printed[_i]);
}
return group$6(indent$5(fill$3(res)));
}
var isSCSSMapItem = isSCSSMapItemNode$1(path);
return group$6(concat$9([node.open ? path.call(print, "open") : "", indent$5(concat$9([softline$3, join$6(concat$9([",", line$3]), path.map(function (childPath) {
var node = childPath.getValue();
var printed = print(childPath); // Key/Value pair in open paren already indented
if (isKeyValuePairNode$1(node) && node.type === "value-comma_group" && node.groups && node.groups[2] && node.groups[2].type === "value-paren_group") {
printed.contents.contents.parts[1] = group$6(printed.contents.contents.parts[1]);
return group$6(dedent$2(printed));
}
return printed;
}, "groups"))])), ifBreak$2(isSCSS$1(options.parser, options.originalText) && isSCSSMapItem && shouldPrintComma$1(options) ? "," : ""), softline$3, node.close ? path.call(print, "close") : ""]), {
shouldBreak: isSCSSMapItem
});
}
case "value-func":
{
return concat$9([node.value, insideAtRuleNode$1(path, "supports") && isMediaAndSupportsKeywords$1(node) ? " " : "", path.call(print, "group")]);
}
case "value-paren":
{
return node.value;
}
case "value-number":
{
return concat$9([printCssNumber(node.value), maybeToLowerCase$1(node.unit)]);
}
case "value-operator":
{
return node.value;
}
case "value-word":
{
if (node.isColor && node.isHex || isWideKeywords$1(node.value)) {
return node.value.toLowerCase();
}
return node.value;
}
case "value-colon":
{
return concat$9([node.value, // Don't add spaces on `:` in `url` function (i.e. `url(fbglyph: cross-outline, fig-white)`)
insideValueFunctionNode$1(path, "url") ? "" : line$3]);
}
case "value-comma":
{
return concat$9([node.value, " "]);
}
case "value-string":
{
return printString$2(node.raws.quote + node.value + node.raws.quote, options);
}
case "value-atword":
{
return concat$9(["@", node.value]);
}
case "value-unicode-range":
{
return node.value;
}
case "value-unknown":
{
return node.value;
}
default:
/* istanbul ignore next */
throw new Error(`Unknown postcss type ${JSON.stringify(node.type)}`);
}
}
function printNodeSequence(path, options, print) {
var node = path.getValue();
var parts = [];
var i = 0;
path.map(function (pathChild) {
var prevNode = node.nodes[i - 1];
if (prevNode && prevNode.type === "css-comment" && prevNode.text.trim() === "prettier-ignore") {
var childNode = pathChild.getValue();
parts.push(options.originalText.slice(options.locStart(childNode), options.locEnd(childNode)));
} else {
parts.push(pathChild.call(print));
}
if (i !== node.nodes.length - 1) {
if (node.nodes[i + 1].type === "css-comment" && !hasNewline$4(options.originalText, options.locStart(node.nodes[i + 1]), {
backwards: true
}) && node.nodes[i].type !== "yaml" && node.nodes[i].type !== "toml" || node.nodes[i + 1].type === "css-atrule" && node.nodes[i + 1].name === "else" && node.nodes[i].type !== "css-comment") {
parts.push(" ");
} else {
parts.push(hardline$7);
if (isNextLineEmpty$3(options.originalText, pathChild.getValue(), options) && node.nodes[i].type !== "yaml" && node.nodes[i].type !== "toml") {
parts.push(hardline$7);
}
}
}
i++;
}, "nodes");
return concat$9(parts);
}
var STRING_REGEX$1 = /(['"])(?:(?!\1)[^\\]|\\[\s\S])*\1/g;
var NUMBER_REGEX = /(?:\d*\.\d+|\d+\.?)(?:[eE][+-]?\d+)?/g;
var STANDARD_UNIT_REGEX = /[a-zA-Z]+/g;
var WORD_PART_REGEX = /[$@]?[a-zA-Z_\u0080-\uFFFF][\w\-\u0080-\uFFFF]*/g;
var ADJUST_NUMBERS_REGEX = RegExp(STRING_REGEX$1.source + `|` + `(${WORD_PART_REGEX.source})?` + `(${NUMBER_REGEX.source})` + `(${STANDARD_UNIT_REGEX.source})?`, "g");
function adjustStrings(value, options) {
return value.replace(STRING_REGEX$1, function (match) {
return printString$2(match, options);
});
}
function quoteAttributeValue(value, options) {
var quote = options.singleQuote ? "'" : '"';
return value.includes('"') || value.includes("'") ? value : quote + value + quote;
}
function adjustNumbers(value) {
return value.replace(ADJUST_NUMBERS_REGEX, function (match, quote, wordPart, number, unit) {
return !wordPart && number ? (wordPart || "") + printCssNumber(number) + maybeToLowerCase$1(unit || "") : match;
});
}
function printCssNumber(rawNumber) {
return printNumber$2(rawNumber) // Remove trailing `.0`.
.replace(/\.0(?=$|e)/, "");
}
var printerPostcss = {
print: genericPrint$2,
embed: embed_1$1,
insertPragma: insertPragma$3,
hasPrettierIgnore: hasIgnoreComment$3,
massageAstNode: clean_1$1
};
var options$3 = {
singleQuote: commonOptions.singleQuote
};
var name$9 = "CSS";
var type$7 = "markup";
var tmScope$7 = "source.css";
var aceMode$7 = "css";
var codemirrorMode$7 = "css";
var codemirrorMimeType$7 = "text/css";
var color$2 = "#563d7c";
var extensions$7 = [
".css"
];
var languageId$7 = 50;
var CSS = {
name: name$9,
type: type$7,
tmScope: tmScope$7,
aceMode: aceMode$7,
codemirrorMode: codemirrorMode$7,
codemirrorMimeType: codemirrorMimeType$7,
color: color$2,
extensions: extensions$7,
languageId: languageId$7
};
var CSS$1 = /*#__PURE__*/Object.freeze({
__proto__: null,
name: name$9,
type: type$7,
tmScope: tmScope$7,
aceMode: aceMode$7,
codemirrorMode: codemirrorMode$7,
codemirrorMimeType: codemirrorMimeType$7,
color: color$2,
extensions: extensions$7,
languageId: languageId$7,
'default': CSS
});
var name$a = "PostCSS";
var type$8 = "markup";
var tmScope$8 = "source.postcss";
var group$7 = "CSS";
var extensions$8 = [
".pcss"
];
var aceMode$8 = "text";
var languageId$8 = 262764437;
var PostCSS = {
name: name$a,
type: type$8,
tmScope: tmScope$8,
group: group$7,
extensions: extensions$8,
aceMode: aceMode$8,
languageId: languageId$8
};
var PostCSS$1 = /*#__PURE__*/Object.freeze({
__proto__: null,
name: name$a,
type: type$8,
tmScope: tmScope$8,
group: group$7,
extensions: extensions$8,
aceMode: aceMode$8,
languageId: languageId$8,
'default': PostCSS
});
var name$b = "Less";
var type$9 = "markup";
var group$8 = "CSS";
var extensions$9 = [
".less"
];
var tmScope$9 = "source.css.less";
var aceMode$9 = "less";
var codemirrorMode$8 = "css";
var codemirrorMimeType$8 = "text/css";
var languageId$9 = 198;
var Less = {
name: name$b,
type: type$9,
group: group$8,
extensions: extensions$9,
tmScope: tmScope$9,
aceMode: aceMode$9,
codemirrorMode: codemirrorMode$8,
codemirrorMimeType: codemirrorMimeType$8,
languageId: languageId$9
};
var Less$1 = /*#__PURE__*/Object.freeze({
__proto__: null,
name: name$b,
type: type$9,
group: group$8,
extensions: extensions$9,
tmScope: tmScope$9,
aceMode: aceMode$9,
codemirrorMode: codemirrorMode$8,
codemirrorMimeType: codemirrorMimeType$8,
languageId: languageId$9,
'default': Less
});
var name$c = "SCSS";
var type$a = "markup";
var tmScope$a = "source.css.scss";
var group$9 = "CSS";
var aceMode$a = "scss";
var codemirrorMode$9 = "css";
var codemirrorMimeType$9 = "text/x-scss";
var extensions$a = [
".scss"
];
var languageId$a = 329;
var SCSS = {
name: name$c,
type: type$a,
tmScope: tmScope$a,
group: group$9,
aceMode: aceMode$a,
codemirrorMode: codemirrorMode$9,
codemirrorMimeType: codemirrorMimeType$9,
extensions: extensions$a,
languageId: languageId$a
};
var SCSS$1 = /*#__PURE__*/Object.freeze({
__proto__: null,
name: name$c,
type: type$a,
tmScope: tmScope$a,
group: group$9,
aceMode: aceMode$a,
codemirrorMode: codemirrorMode$9,
codemirrorMimeType: codemirrorMimeType$9,
extensions: extensions$a,
languageId: languageId$a,
'default': SCSS
});
var require$$0$2 = getCjsExportFromNamespace(CSS$1);
var require$$1$1 = getCjsExportFromNamespace(PostCSS$1);
var require$$2$1 = getCjsExportFromNamespace(Less$1);
var require$$3$1 = getCjsExportFromNamespace(SCSS$1);
var languages$1 = [createLanguage(require$$0$2, function (data) {
return Object.assign(data, {
since: "1.4.0",
parsers: ["css"],
vscodeLanguageIds: ["css"]
});
}), createLanguage(require$$1$1, function (data) {
return Object.assign(data, {
since: "1.4.0",
parsers: ["css"],
vscodeLanguageIds: ["postcss"],
extensions: data.extensions.concat(".postcss")
});
}), createLanguage(require$$2$1, function (data) {
return Object.assign(data, {
since: "1.4.0",
parsers: ["less"],
vscodeLanguageIds: ["less"]
});
}), createLanguage(require$$3$1, function (data) {
return Object.assign(data, {
since: "1.4.0",
parsers: ["scss"],
vscodeLanguageIds: ["scss"]
});
})];
var printers$1 = {
postcss: printerPostcss
};
var languageCss = {
languages: languages$1,
options: options$3,
printers: printers$1
};
var _require$$0$builders$4 = doc.builders,
concat$a = _require$$0$builders$4.concat,
join$7 = _require$$0$builders$4.join,
softline$4 = _require$$0$builders$4.softline,
hardline$8 = _require$$0$builders$4.hardline,
line$4 = _require$$0$builders$4.line,
group$a = _require$$0$builders$4.group,
indent$6 = _require$$0$builders$4.indent,
ifBreak$3 = _require$$0$builders$4.ifBreak; // http://w3c.github.io/html/single-page.html#void-elements
var voidTags = ["area", "base", "br", "col", "embed", "hr", "img", "input", "link", "meta", "param", "source", "track", "wbr"]; // Formatter based on @glimmerjs/syntax's built-in test formatter:
// https://github.com/glimmerjs/glimmer-vm/blob/master/packages/%40glimmer/syntax/lib/generation/print.ts
function printChildren(path, options, print) {
return concat$a(path.map(function (childPath, childIndex) {
var childNode = path.getValue();
var isFirstNode = childIndex === 0;
var isLastNode = childIndex == path.getParentNode(0).children.length - 1;
var isLastNodeInMultiNodeList = isLastNode && !isFirstNode;
var isWhitespace = isWhitespaceNode(childNode);
if (isWhitespace && isLastNodeInMultiNodeList) {
return print(childPath, options, print);
} else if (isFirstNode) {
return concat$a([softline$4, print(childPath, options, print)]);
}
return print(childPath, options, print);
}, "children"));
}
function print(path, options, print) {
var n = path.getValue();
/* istanbul ignore if*/
if (!n) {
return "";
}
switch (n.type) {
case "Block":
case "Program":
case "Template":
{
return group$a(concat$a(path.map(print, "body").filter(function (text) {
return text !== "";
})));
}
case "ElementNode":
{
var tagFirstChar = n.tag[0];
var isLocal = n.tag.indexOf(".") !== -1;
var isGlimmerComponent = tagFirstChar.toUpperCase() === tagFirstChar || isLocal;
var hasChildren = n.children.length > 0;
var hasNonWhitespaceChildren = n.children.some(function (n) {
return !isWhitespaceNode(n);
});
var isVoid = isGlimmerComponent && (!hasChildren || !hasNonWhitespaceChildren) || voidTags.indexOf(n.tag) !== -1;
var closeTagForNoBreak = isVoid ? concat$a([" />", softline$4]) : ">";
var closeTagForBreak = isVoid ? "/>" : ">";
var _getParams = function _getParams(path, print) {
return indent$6(concat$a([n.attributes.length ? line$4 : "", join$7(line$4, path.map(print, "attributes")), n.modifiers.length ? line$4 : "", join$7(line$4, path.map(print, "modifiers")), n.comments.length ? line$4 : "", join$7(line$4, path.map(print, "comments"))]));
};
var nextNode = getNextNode(path);
return concat$a([group$a(concat$a(["<", n.tag, _getParams(path, print), n.blockParams.length ? ` as |${n.blockParams.join(" ")}|` : "", ifBreak$3(softline$4, ""), ifBreak$3(closeTagForBreak, closeTagForNoBreak)])), !isVoid ? group$a(concat$a([hasNonWhitespaceChildren ? indent$6(printChildren(path, options, print)) : "", ifBreak$3(hasChildren ? hardline$8 : "", ""), concat$a(["", n.tag, ">"])])) : "", nextNode && nextNode.type === "ElementNode" ? hardline$8 : ""]);
}
case "BlockStatement":
{
var pp = path.getParentNode(1);
var isElseIf = pp && pp.inverse && pp.inverse.body.length === 1 && pp.inverse.body[0] === n && pp.inverse.body[0].path.parts[0] === "if";
var hasElseIf = n.inverse && n.inverse.body.length === 1 && n.inverse.body[0].type === "BlockStatement" && n.inverse.body[0].path.parts[0] === "if";
var indentElse = hasElseIf ? function (a) {
return a;
} : indent$6;
if (n.inverse) {
return concat$a([isElseIf ? concat$a(["{{else ", printPathParams(path, print), "}}"]) : printOpenBlock(path, print), indent$6(concat$a([hardline$8, path.call(print, "program")])), n.inverse && !hasElseIf ? concat$a([hardline$8, "{{else}}"]) : "", n.inverse ? indentElse(concat$a([hardline$8, path.call(print, "inverse")])) : "", isElseIf ? "" : concat$a([hardline$8, printCloseBlock(path, print)])]);
} else if (isElseIf) {
return concat$a([concat$a(["{{else ", printPathParams(path, print), "}}"]), indent$6(concat$a([hardline$8, path.call(print, "program")]))]);
}
var _hasNonWhitespaceChildren = n.program.body.some(function (n) {
return !isWhitespaceNode(n);
});
return concat$a([printOpenBlock(path, print), group$a(concat$a([indent$6(concat$a([softline$4, path.call(print, "program")])), _hasNonWhitespaceChildren ? hardline$8 : softline$4, printCloseBlock(path, print)]))]);
}
case "ElementModifierStatement":
case "MustacheStatement":
{
var _pp = path.getParentNode(1);
var isConcat = _pp && _pp.type === "ConcatStatement";
return group$a(concat$a([n.escaped === false ? "{{{" : "{{", printPathParams(path, print, {
group: false
}), isConcat ? "" : softline$4, n.escaped === false ? "}}}" : "}}"]));
}
case "SubExpression":
{
var params = getParams(path, print);
var printedParams = params.length > 0 ? indent$6(concat$a([line$4, group$a(join$7(line$4, params))])) : "";
return group$a(concat$a(["(", printPath(path, print), printedParams, softline$4, ")"]));
}
case "AttrNode":
{
var isText = n.value.type === "TextNode";
if (isText && n.value.loc.start.column === n.value.loc.end.column) {
return concat$a([n.name]);
}
var value = path.call(print, "value");
var quotedValue = isText ? printStringLiteral(value.parts.join(), options) : value;
return concat$a([n.name, "=", quotedValue]);
}
case "ConcatStatement":
{
return concat$a(['"', group$a(indent$6(join$7(softline$4, path.map(function (partPath) {
return print(partPath);
}, "parts").filter(function (a) {
return a !== "";
})))), '"']);
}
case "Hash":
{
return concat$a([join$7(line$4, path.map(print, "pairs"))]);
}
case "HashPair":
{
return concat$a([n.key, "=", path.call(print, "value")]);
}
case "TextNode":
{
var maxLineBreaksToPreserve = 2;
var isFirstElement = !getPreviousNode(path);
var isLastElement = !getNextNode(path);
var isWhitespaceOnly = !/\S/.test(n.chars);
var lineBreaksCount = countNewLines(n.chars);
var hasBlockParent = path.getParentNode(0).type === "Block";
var hasElementParent = path.getParentNode(0).type === "ElementNode";
var hasTemplateParent = path.getParentNode(0).type === "Template";
var leadingLineBreaksCount = countLeadingNewLines(n.chars);
var trailingLineBreaksCount = countTrailingNewLines(n.chars);
if ((isFirstElement || isLastElement) && isWhitespaceOnly && (hasBlockParent || hasElementParent || hasTemplateParent)) {
return "";
}
if (isWhitespaceOnly && lineBreaksCount) {
leadingLineBreaksCount = Math.min(lineBreaksCount, maxLineBreaksToPreserve);
trailingLineBreaksCount = 0;
} else {
if (isNextNodeOfType(path, "ElementNode") || isNextNodeOfType(path, "BlockStatement")) {
trailingLineBreaksCount = Math.max(trailingLineBreaksCount, 1);
}
if (isPreviousNodeOfSomeType(path, ["ElementNode"]) || isPreviousNodeOfSomeType(path, ["BlockStatement"])) {
leadingLineBreaksCount = Math.max(leadingLineBreaksCount, 1);
}
}
var leadingSpace = "";
var trailingSpace = ""; // preserve a space inside of an attribute node where whitespace present,
// when next to mustache statement.
var inAttrNode = path.stack.indexOf("attributes") >= 0;
if (inAttrNode) {
var parentNode = path.getParentNode(0);
var _isConcat = parentNode.type === "ConcatStatement";
if (_isConcat) {
var parts = parentNode.parts;
var partIndex = parts.indexOf(n);
if (partIndex > 0) {
var partType = parts[partIndex - 1].type;
var isMustache = partType === "MustacheStatement";
if (isMustache) {
leadingSpace = " ";
}
}
if (partIndex < parts.length - 1) {
var _partType = parts[partIndex + 1].type;
var _isMustache = _partType === "MustacheStatement";
if (_isMustache) {
trailingSpace = " ";
}
}
}
} else {
if (trailingLineBreaksCount === 0 && isNextNodeOfType(path, "MustacheStatement")) {
trailingSpace = " ";
}
if (leadingLineBreaksCount === 0 && isPreviousNodeOfSomeType(path, ["MustacheStatement"])) {
leadingSpace = " ";
}
if (isFirstElement) {
leadingLineBreaksCount = 0;
leadingSpace = "";
}
if (isLastElement) {
trailingLineBreaksCount = 0;
trailingSpace = "";
}
}
return concat$a([].concat(_toConsumableArray$1(generateHardlines(leadingLineBreaksCount, maxLineBreaksToPreserve)), [n.chars.replace(/^[\s ]+/g, leadingSpace).replace(/[\s ]+$/, trailingSpace)], _toConsumableArray$1(generateHardlines(trailingLineBreaksCount, maxLineBreaksToPreserve))).filter(Boolean));
}
case "MustacheCommentStatement":
{
var dashes = n.value.indexOf("}}") > -1 ? "--" : "";
return concat$a(["{{!", dashes, n.value, dashes, "}}"]);
}
case "PathExpression":
{
return n.original;
}
case "BooleanLiteral":
{
return String(n.value);
}
case "CommentStatement":
{
return concat$a([""]);
}
case "StringLiteral":
{
return printStringLiteral(n.value, options);
}
case "NumberLiteral":
{
return String(n.value);
}
case "UndefinedLiteral":
{
return "undefined";
}
case "NullLiteral":
{
return "null";
}
/* istanbul ignore next */
default:
throw new Error("unknown glimmer type: " + JSON.stringify(n.type));
}
}
/**
* Prints a string literal with the correct surrounding quotes based on
* `options.singleQuote` and the number of escaped quotes contained in
* the string literal. This function is the glimmer equivalent of `printString`
* in `common/util`, but has differences because of the way escaped characters
* are treated in hbs string literals.
* @param {string} stringLiteral - the string literal value
* @param {object} options - the prettier options object
*/
function printStringLiteral(stringLiteral, options) {
var double = {
quote: '"',
regex: /"/g
};
var single = {
quote: "'",
regex: /'/g
};
var preferred = options.singleQuote ? single : double;
var alternate = preferred === single ? double : single;
var shouldUseAlternateQuote = false; // If `stringLiteral` contains at least one of the quote preferred for
// enclosing the string, we might want to enclose with the alternate quote
// instead, to minimize the number of escaped quotes.
if (stringLiteral.includes(preferred.quote) || stringLiteral.includes(alternate.quote)) {
var numPreferredQuotes = (stringLiteral.match(preferred.regex) || []).length;
var numAlternateQuotes = (stringLiteral.match(alternate.regex) || []).length;
shouldUseAlternateQuote = numPreferredQuotes > numAlternateQuotes;
}
var enclosingQuote = shouldUseAlternateQuote ? alternate : preferred;
var escapedStringLiteral = stringLiteral.replace(enclosingQuote.regex, `\\${enclosingQuote.quote}`);
return `${enclosingQuote.quote}${escapedStringLiteral}${enclosingQuote.quote}`;
}
function printPath(path, print) {
return path.call(print, "path");
}
function getParams(path, print) {
var node = path.getValue();
var parts = [];
if (node.params.length > 0) {
parts = parts.concat(path.map(print, "params"));
}
if (node.hash && node.hash.pairs.length > 0) {
parts.push(path.call(print, "hash"));
}
return parts;
}
function printPathParams(path, print, options) {
var parts = [];
options = Object.assign({
group: true
}, options || {});
parts.push(printPath(path, print));
parts = parts.concat(getParams(path, print));
if (!options.group) {
return indent$6(join$7(line$4, parts));
}
return indent$6(group$a(join$7(line$4, parts)));
}
function printBlockParams(path) {
var block = path.getValue();
if (!block.program || !block.program.blockParams.length) {
return "";
}
return concat$a([" as |", block.program.blockParams.join(" "), "|"]);
}
function printOpenBlock(path, print) {
return group$a(concat$a(["{{#", printPathParams(path, print), printBlockParams(path), softline$4, "}}"]));
}
function printCloseBlock(path, print) {
return concat$a(["{{/", path.call(print, "path"), "}}"]);
}
function isWhitespaceNode(node) {
return node.type === "TextNode" && !/\S/.test(node.chars);
}
function getPreviousNode(path) {
var node = path.getValue();
var parentNode = path.getParentNode(0);
var children = parentNode.children || parentNode.body;
if (children) {
var nodeIndex = children.indexOf(node);
if (nodeIndex > 0) {
var previousNode = children[nodeIndex - 1];
return previousNode;
}
}
}
function getNextNode(path) {
var node = path.getValue();
var parentNode = path.getParentNode(0);
var children = parentNode.children || parentNode.body;
if (children) {
var nodeIndex = children.indexOf(node);
if (nodeIndex < children.length) {
var nextNode = children[nodeIndex + 1];
return nextNode;
}
}
}
function isPreviousNodeOfSomeType(path, types) {
var previousNode = getPreviousNode(path);
if (previousNode) {
return types.some(function (type) {
return previousNode.type === type;
});
}
return false;
}
function isNextNodeOfType(path, type) {
var nextNode = getNextNode(path);
return nextNode && nextNode.type === type;
}
function clean$3(ast, newObj) {
delete newObj.loc;
delete newObj.selfClosing; // (Glimmer/HTML) ignore TextNode whitespace
if (ast.type === "TextNode") {
if (ast.chars.replace(/\s+/, "") === "") {
return null;
}
newObj.chars = ast.chars.replace(/^\s+/, "").replace(/\s+$/, "");
}
}
function countNewLines(string) {
/* istanbul ignore next */
string = typeof string === "string" ? string : "";
return string.split("\n").length - 1;
}
function countLeadingNewLines(string) {
/* istanbul ignore next */
string = typeof string === "string" ? string : "";
var newLines = (string.match(/^([^\S\r\n]*[\r\n])+/g) || [])[0] || "";
return countNewLines(newLines);
}
function countTrailingNewLines(string) {
/* istanbul ignore next */
string = typeof string === "string" ? string : "";
var newLines = (string.match(/([\r\n][^\S\r\n]*)+$/g) || [])[0] || "";
return countNewLines(newLines);
}
function generateHardlines() {
var number = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;
var max = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
return new Array(Math.min(number, max)).fill(hardline$8);
}
var printerGlimmer = {
print,
massageAstNode: clean$3
};
var name$d = "Handlebars";
var type$b = "markup";
var group$b = "HTML";
var aliases$3 = [
"hbs",
"htmlbars"
];
var extensions$b = [
".handlebars",
".hbs"
];
var tmScope$b = "text.html.handlebars";
var aceMode$b = "handlebars";
var languageId$b = 155;
var Handlebars = {
name: name$d,
type: type$b,
group: group$b,
aliases: aliases$3,
extensions: extensions$b,
tmScope: tmScope$b,
aceMode: aceMode$b,
languageId: languageId$b
};
var Handlebars$1 = /*#__PURE__*/Object.freeze({
__proto__: null,
name: name$d,
type: type$b,
group: group$b,
aliases: aliases$3,
extensions: extensions$b,
tmScope: tmScope$b,
aceMode: aceMode$b,
languageId: languageId$b,
'default': Handlebars
});
var require$$0$3 = getCjsExportFromNamespace(Handlebars$1);
var languages$2 = [createLanguage(require$$0$3, function (data) {
return Object.assign(data, {
since: null,
// unreleased
parsers: ["glimmer"],
vscodeLanguageIds: ["handlebars"]
});
})];
var printers$2 = {
glimmer: printerGlimmer
};
var languageHandlebars = {
languages: languages$2,
printers: printers$2
};
function hasPragma$2(text) {
return /^\s*#[^\n\S]*@(format|prettier)\s*(\n|$)/.test(text);
}
function insertPragma$4(text) {
return "# @format\n\n" + text;
}
var pragma$2 = {
hasPragma: hasPragma$2,
insertPragma: insertPragma$4
};
var _require$$0$builders$5 = doc.builders,
concat$b = _require$$0$builders$5.concat,
join$8 = _require$$0$builders$5.join,
hardline$9 = _require$$0$builders$5.hardline,
line$5 = _require$$0$builders$5.line,
softline$5 = _require$$0$builders$5.softline,
group$c = _require$$0$builders$5.group,
indent$7 = _require$$0$builders$5.indent,
ifBreak$4 = _require$$0$builders$5.ifBreak;
var hasIgnoreComment$4 = util.hasIgnoreComment;
var isNextLineEmpty$4 = utilShared.isNextLineEmpty;
var insertPragma$5 = pragma$2.insertPragma;
function genericPrint$3(path, options, print) {
var n = path.getValue();
if (!n) {
return "";
}
if (typeof n === "string") {
return n;
}
switch (n.kind) {
case "Document":
{
var parts = [];
path.map(function (pathChild, index) {
parts.push(concat$b([pathChild.call(print)]));
if (index !== n.definitions.length - 1) {
parts.push(hardline$9);
if (isNextLineEmpty$4(options.originalText, pathChild.getValue(), options)) {
parts.push(hardline$9);
}
}
}, "definitions");
return concat$b([concat$b(parts), hardline$9]);
}
case "OperationDefinition":
{
var hasOperation = options.originalText[options.locStart(n)] !== "{";
var hasName = !!n.name;
return concat$b([hasOperation ? n.operation : "", hasOperation && hasName ? concat$b([" ", path.call(print, "name")]) : "", n.variableDefinitions && n.variableDefinitions.length ? group$c(concat$b(["(", indent$7(concat$b([softline$5, join$8(concat$b([ifBreak$4("", ", "), softline$5]), path.map(print, "variableDefinitions"))])), softline$5, ")"])) : "", printDirectives(path, print, n), n.selectionSet ? !hasOperation && !hasName ? "" : " " : "", path.call(print, "selectionSet")]);
}
case "FragmentDefinition":
{
return concat$b(["fragment ", path.call(print, "name"), n.variableDefinitions && n.variableDefinitions.length ? group$c(concat$b(["(", indent$7(concat$b([softline$5, join$8(concat$b([ifBreak$4("", ", "), softline$5]), path.map(print, "variableDefinitions"))])), softline$5, ")"])) : "", " on ", path.call(print, "typeCondition"), printDirectives(path, print, n), " ", path.call(print, "selectionSet")]);
}
case "SelectionSet":
{
return concat$b(["{", indent$7(concat$b([hardline$9, join$8(hardline$9, path.call(function (selectionsPath) {
return printSequence(selectionsPath, options, print);
}, "selections"))])), hardline$9, "}"]);
}
case "Field":
{
return group$c(concat$b([n.alias ? concat$b([path.call(print, "alias"), ": "]) : "", path.call(print, "name"), n.arguments.length > 0 ? group$c(concat$b(["(", indent$7(concat$b([softline$5, join$8(concat$b([ifBreak$4("", ", "), softline$5]), path.call(function (argsPath) {
return printSequence(argsPath, options, print);
}, "arguments"))])), softline$5, ")"])) : "", printDirectives(path, print, n), n.selectionSet ? " " : "", path.call(print, "selectionSet")]));
}
case "Name":
{
return n.value;
}
case "StringValue":
{
if (n.block) {
return concat$b(['"""', hardline$9, join$8(hardline$9, n.value.replace(/"""/g, "\\$&").split("\n")), hardline$9, '"""']);
}
return concat$b(['"', n.value.replace(/["\\]/g, "\\$&").replace(/\n/g, "\\n"), '"']);
}
case "IntValue":
case "FloatValue":
case "EnumValue":
{
return n.value;
}
case "BooleanValue":
{
return n.value ? "true" : "false";
}
case "NullValue":
{
return "null";
}
case "Variable":
{
return concat$b(["$", path.call(print, "name")]);
}
case "ListValue":
{
return group$c(concat$b(["[", indent$7(concat$b([softline$5, join$8(concat$b([ifBreak$4("", ", "), softline$5]), path.map(print, "values"))])), softline$5, "]"]));
}
case "ObjectValue":
{
return group$c(concat$b(["{", options.bracketSpacing && n.fields.length > 0 ? " " : "", indent$7(concat$b([softline$5, join$8(concat$b([ifBreak$4("", ", "), softline$5]), path.map(print, "fields"))])), softline$5, ifBreak$4("", options.bracketSpacing && n.fields.length > 0 ? " " : ""), "}"]));
}
case "ObjectField":
case "Argument":
{
return concat$b([path.call(print, "name"), ": ", path.call(print, "value")]);
}
case "Directive":
{
return concat$b(["@", path.call(print, "name"), n.arguments.length > 0 ? group$c(concat$b(["(", indent$7(concat$b([softline$5, join$8(concat$b([ifBreak$4("", ", "), softline$5]), path.call(function (argsPath) {
return printSequence(argsPath, options, print);
}, "arguments"))])), softline$5, ")"])) : ""]);
}
case "NamedType":
{
return path.call(print, "name");
}
case "VariableDefinition":
{
return concat$b([path.call(print, "variable"), ": ", path.call(print, "type"), n.defaultValue ? concat$b([" = ", path.call(print, "defaultValue")]) : "", printDirectives(path, print, n)]);
}
case "TypeExtensionDefinition":
{
return concat$b(["extend ", path.call(print, "definition")]);
}
case "ObjectTypeExtension":
case "ObjectTypeDefinition":
{
return concat$b([path.call(print, "description"), n.description ? hardline$9 : "", n.kind === "ObjectTypeExtension" ? "extend " : "", "type ", path.call(print, "name"), n.interfaces.length > 0 ? concat$b([" implements ", join$8(determineInterfaceSeparator(options.originalText.substr(options.locStart(n), options.locEnd(n))), path.map(print, "interfaces"))]) : "", printDirectives(path, print, n), n.fields.length > 0 ? concat$b([" {", indent$7(concat$b([hardline$9, join$8(hardline$9, path.call(function (fieldsPath) {
return printSequence(fieldsPath, options, print);
}, "fields"))])), hardline$9, "}"]) : ""]);
}
case "FieldDefinition":
{
return concat$b([path.call(print, "description"), n.description ? hardline$9 : "", path.call(print, "name"), n.arguments.length > 0 ? group$c(concat$b(["(", indent$7(concat$b([softline$5, join$8(concat$b([ifBreak$4("", ", "), softline$5]), path.call(function (argsPath) {
return printSequence(argsPath, options, print);
}, "arguments"))])), softline$5, ")"])) : "", ": ", path.call(print, "type"), printDirectives(path, print, n)]);
}
case "DirectiveDefinition":
{
return concat$b([path.call(print, "description"), n.description ? hardline$9 : "", "directive ", "@", path.call(print, "name"), n.arguments.length > 0 ? group$c(concat$b(["(", indent$7(concat$b([softline$5, join$8(concat$b([ifBreak$4("", ", "), softline$5]), path.call(function (argsPath) {
return printSequence(argsPath, options, print);
}, "arguments"))])), softline$5, ")"])) : "", concat$b([" on ", join$8(" | ", path.map(print, "locations"))])]);
}
case "EnumTypeExtension":
case "EnumTypeDefinition":
{
return concat$b([path.call(print, "description"), n.description ? hardline$9 : "", n.kind === "EnumTypeExtension" ? "extend " : "", "enum ", path.call(print, "name"), printDirectives(path, print, n), n.values.length > 0 ? concat$b([" {", indent$7(concat$b([hardline$9, join$8(hardline$9, path.call(function (valuesPath) {
return printSequence(valuesPath, options, print);
}, "values"))])), hardline$9, "}"]) : ""]);
}
case "EnumValueDefinition":
{
return concat$b([path.call(print, "description"), n.description ? hardline$9 : "", path.call(print, "name"), printDirectives(path, print, n)]);
}
case "InputValueDefinition":
{
return concat$b([path.call(print, "description"), n.description ? n.description.block ? hardline$9 : line$5 : "", path.call(print, "name"), ": ", path.call(print, "type"), n.defaultValue ? concat$b([" = ", path.call(print, "defaultValue")]) : "", printDirectives(path, print, n)]);
}
case "InputObjectTypeExtension":
case "InputObjectTypeDefinition":
{
return concat$b([path.call(print, "description"), n.description ? hardline$9 : "", n.kind === "InputObjectTypeExtension" ? "extend " : "", "input ", path.call(print, "name"), printDirectives(path, print, n), n.fields.length > 0 ? concat$b([" {", indent$7(concat$b([hardline$9, join$8(hardline$9, path.call(function (fieldsPath) {
return printSequence(fieldsPath, options, print);
}, "fields"))])), hardline$9, "}"]) : ""]);
}
case "SchemaDefinition":
{
return concat$b(["schema", printDirectives(path, print, n), " {", n.operationTypes.length > 0 ? indent$7(concat$b([hardline$9, join$8(hardline$9, path.call(function (opsPath) {
return printSequence(opsPath, options, print);
}, "operationTypes"))])) : "", hardline$9, "}"]);
}
case "OperationTypeDefinition":
{
return concat$b([path.call(print, "operation"), ": ", path.call(print, "type")]);
}
case "InterfaceTypeExtension":
case "InterfaceTypeDefinition":
{
return concat$b([path.call(print, "description"), n.description ? hardline$9 : "", n.kind === "InterfaceTypeExtension" ? "extend " : "", "interface ", path.call(print, "name"), printDirectives(path, print, n), n.fields.length > 0 ? concat$b([" {", indent$7(concat$b([hardline$9, join$8(hardline$9, path.call(function (fieldsPath) {
return printSequence(fieldsPath, options, print);
}, "fields"))])), hardline$9, "}"]) : ""]);
}
case "FragmentSpread":
{
return concat$b(["...", path.call(print, "name"), printDirectives(path, print, n)]);
}
case "InlineFragment":
{
return concat$b(["...", n.typeCondition ? concat$b([" on ", path.call(print, "typeCondition")]) : "", printDirectives(path, print, n), " ", path.call(print, "selectionSet")]);
}
case "UnionTypeExtension":
case "UnionTypeDefinition":
{
return group$c(concat$b([path.call(print, "description"), n.description ? hardline$9 : "", group$c(concat$b([n.kind === "UnionTypeExtension" ? "extend " : "", "union ", path.call(print, "name"), printDirectives(path, print, n), n.types.length > 0 ? concat$b([" =", ifBreak$4("", " "), indent$7(concat$b([ifBreak$4(concat$b([line$5, " "])), join$8(concat$b([line$5, "| "]), path.map(print, "types"))]))]) : ""]))]));
}
case "ScalarTypeExtension":
case "ScalarTypeDefinition":
{
return concat$b([path.call(print, "description"), n.description ? hardline$9 : "", n.kind === "ScalarTypeExtension" ? "extend " : "", "scalar ", path.call(print, "name"), printDirectives(path, print, n)]);
}
case "NonNullType":
{
return concat$b([path.call(print, "type"), "!"]);
}
case "ListType":
{
return concat$b(["[", path.call(print, "type"), "]"]);
}
default:
/* istanbul ignore next */
throw new Error("unknown graphql type: " + JSON.stringify(n.kind));
}
}
function printDirectives(path, print, n) {
if (n.directives.length === 0) {
return "";
}
return concat$b([" ", group$c(indent$7(concat$b([softline$5, join$8(concat$b([ifBreak$4("", " "), softline$5]), path.map(print, "directives"))])))]);
}
function printSequence(sequencePath, options, print) {
var count = sequencePath.getValue().length;
return sequencePath.map(function (path, i) {
var printed = print(path);
if (isNextLineEmpty$4(options.originalText, path.getValue(), options) && i < count - 1) {
return concat$b([printed, hardline$9]);
}
return printed;
});
}
function canAttachComment$1(node) {
return node.kind && node.kind !== "Comment";
}
function printComment$2(commentPath) {
var comment = commentPath.getValue();
if (comment.kind === "Comment") {
return "#" + comment.value.trimRight();
}
throw new Error("Not a comment: " + JSON.stringify(comment));
}
function determineInterfaceSeparator(originalSource) {
var start = originalSource.indexOf("implements");
if (start === -1) {
throw new Error("Must implement interfaces: " + originalSource);
}
var end = originalSource.indexOf("{");
if (end === -1) {
end = originalSource.length;
}
return originalSource.substr(start, end).includes("&") ? " & " : ", ";
}
function clean$4(node, newNode
/*, parent*/
) {
delete newNode.loc;
delete newNode.comments;
}
var printerGraphql = {
print: genericPrint$3,
massageAstNode: clean$4,
hasPrettierIgnore: hasIgnoreComment$4,
insertPragma: insertPragma$5,
printComment: printComment$2,
canAttachComment: canAttachComment$1
};
var options$4 = {
bracketSpacing: commonOptions.bracketSpacing
};
var name$e = "GraphQL";
var type$c = "data";
var extensions$c = [
".graphql",
".gql",
".graphqls"
];
var tmScope$c = "source.graphql";
var aceMode$c = "text";
var languageId$c = 139;
var GraphQL = {
name: name$e,
type: type$c,
extensions: extensions$c,
tmScope: tmScope$c,
aceMode: aceMode$c,
languageId: languageId$c
};
var GraphQL$1 = /*#__PURE__*/Object.freeze({
__proto__: null,
name: name$e,
type: type$c,
extensions: extensions$c,
tmScope: tmScope$c,
aceMode: aceMode$c,
languageId: languageId$c,
'default': GraphQL
});
var require$$0$4 = getCjsExportFromNamespace(GraphQL$1);
var languages$3 = [createLanguage(require$$0$4, function (data) {
return Object.assign(data, {
since: "1.5.0",
parsers: ["graphql"],
vscodeLanguageIds: ["graphql"]
});
})];
var printers$3 = {
graphql: printerGraphql
};
var languageGraphql = {
languages: languages$3,
options: options$4,
printers: printers$3
};
var json = {
"cjkPattern": "[\\u02ea-\\u02eb\\u1100-\\u11ff\\u2e80-\\u2e99\\u2e9b-\\u2ef3\\u2f00-\\u2fd5\\u3000-\\u303f\\u3041-\\u3096\\u3099-\\u309f\\u30a1-\\u30fa\\u30fc-\\u30ff\\u3105-\\u312f\\u3131-\\u318e\\u3190-\\u3191\\u3196-\\u31ba\\u31c0-\\u31e3\\u31f0-\\u321e\\u322a-\\u3247\\u3260-\\u327e\\u328a-\\u32b0\\u32c0-\\u32cb\\u32d0-\\u3370\\u337b-\\u337f\\u33e0-\\u33fe\\u3400-\\u4db5\\u4e00-\\u9fef\\ua960-\\ua97c\\uac00-\\ud7a3\\ud7b0-\\ud7c6\\ud7cb-\\ud7fb\\uf900-\\ufa6d\\ufa70-\\ufad9\\ufe10-\\ufe1f\\ufe30-\\ufe6f\\uff00-\\uffef]|[\\ud840-\\ud868\\ud86a-\\ud86c\\ud86f-\\ud872\\ud874-\\ud879][\\udc00-\\udfff]|\\ud82c[\\udc00-\\udd1e\\udd50-\\udd52\\udd64-\\udd67]|\\ud83c[\\ude00\\ude50-\\ude51]|\\ud869[\\udc00-\\uded6\\udf00-\\udfff]|\\ud86d[\\udc00-\\udf34\\udf40-\\udfff]|\\ud86e[\\udc00-\\udc1d\\udc20-\\udfff]|\\ud873[\\udc00-\\udea1\\udeb0-\\udfff]|\\ud87a[\\udc00-\\udfe0]|\\ud87e[\\udc00-\\ude1d]",
"kPattern": "[\\u1100-\\u11ff\\u3001-\\u3003\\u3008-\\u3011\\u3013-\\u301f\\u302e-\\u3030\\u3037\\u30fb\\u3131-\\u318e\\u3200-\\u321e\\u3260-\\u327e\\ua960-\\ua97c\\uac00-\\ud7a3\\ud7b0-\\ud7c6\\ud7cb-\\ud7fb\\ufe45-\\ufe46\\uff61-\\uff65\\uffa0-\\uffbe\\uffc2-\\uffc7\\uffca-\\uffcf\\uffd2-\\uffd7\\uffda-\\uffdc]",
"punctuationPattern": "[\\u0021-\\u002f\\u003a-\\u0040\\u005b-\\u0060\\u007b-\\u007e\\u00a1\\u00a7\\u00ab\\u00b6-\\u00b7\\u00bb\\u00bf\\u037e\\u0387\\u055a-\\u055f\\u0589-\\u058a\\u05be\\u05c0\\u05c3\\u05c6\\u05f3-\\u05f4\\u0609-\\u060a\\u060c-\\u060d\\u061b\\u061e-\\u061f\\u066a-\\u066d\\u06d4\\u0700-\\u070d\\u07f7-\\u07f9\\u0830-\\u083e\\u085e\\u0964-\\u0965\\u0970\\u09fd\\u0a76\\u0af0\\u0c77\\u0c84\\u0df4\\u0e4f\\u0e5a-\\u0e5b\\u0f04-\\u0f12\\u0f14\\u0f3a-\\u0f3d\\u0f85\\u0fd0-\\u0fd4\\u0fd9-\\u0fda\\u104a-\\u104f\\u10fb\\u1360-\\u1368\\u1400\\u166e\\u169b-\\u169c\\u16eb-\\u16ed\\u1735-\\u1736\\u17d4-\\u17d6\\u17d8-\\u17da\\u1800-\\u180a\\u1944-\\u1945\\u1a1e-\\u1a1f\\u1aa0-\\u1aa6\\u1aa8-\\u1aad\\u1b5a-\\u1b60\\u1bfc-\\u1bff\\u1c3b-\\u1c3f\\u1c7e-\\u1c7f\\u1cc0-\\u1cc7\\u1cd3\\u2010-\\u2027\\u2030-\\u2043\\u2045-\\u2051\\u2053-\\u205e\\u207d-\\u207e\\u208d-\\u208e\\u2308-\\u230b\\u2329-\\u232a\\u2768-\\u2775\\u27c5-\\u27c6\\u27e6-\\u27ef\\u2983-\\u2998\\u29d8-\\u29db\\u29fc-\\u29fd\\u2cf9-\\u2cfc\\u2cfe-\\u2cff\\u2d70\\u2e00-\\u2e2e\\u2e30-\\u2e4f\\u3001-\\u3003\\u3008-\\u3011\\u3014-\\u301f\\u3030\\u303d\\u30a0\\u30fb\\ua4fe-\\ua4ff\\ua60d-\\ua60f\\ua673\\ua67e\\ua6f2-\\ua6f7\\ua874-\\ua877\\ua8ce-\\ua8cf\\ua8f8-\\ua8fa\\ua8fc\\ua92e-\\ua92f\\ua95f\\ua9c1-\\ua9cd\\ua9de-\\ua9df\\uaa5c-\\uaa5f\\uaade-\\uaadf\\uaaf0-\\uaaf1\\uabeb\\ufd3e-\\ufd3f\\ufe10-\\ufe19\\ufe30-\\ufe52\\ufe54-\\ufe61\\ufe63\\ufe68\\ufe6a-\\ufe6b\\uff01-\\uff03\\uff05-\\uff0a\\uff0c-\\uff0f\\uff1a-\\uff1b\\uff1f-\\uff20\\uff3b-\\uff3d\\uff3f\\uff5b\\uff5d\\uff5f-\\uff65]|\\ud800[\\udd00-\\udd02\\udf9f\\udfd0]|\\ud801[\\udd6f]|\\ud802[\\udc57\\udd1f\\udd3f\\ude50-\\ude58\\ude7f\\udef0-\\udef6\\udf39-\\udf3f\\udf99-\\udf9c]|\\ud803[\\udf55-\\udf59]|\\ud804[\\udc47-\\udc4d\\udcbb-\\udcbc\\udcbe-\\udcc1\\udd40-\\udd43\\udd74-\\udd75\\uddc5-\\uddc8\\uddcd\\udddb\\udddd-\\udddf\\ude38-\\ude3d\\udea9]|\\ud805[\\udc4b-\\udc4f\\udc5b\\udc5d\\udcc6\\uddc1-\\uddd7\\ude41-\\ude43\\ude60-\\ude6c\\udf3c-\\udf3e]|\\ud806[\\udc3b\\udde2\\ude3f-\\ude46\\ude9a-\\ude9c\\ude9e-\\udea2]|\\ud807[\\udc41-\\udc45\\udc70-\\udc71\\udef7-\\udef8\\udfff]|\\ud809[\\udc70-\\udc74]|\\ud81a[\\ude6e-\\ude6f\\udef5\\udf37-\\udf3b\\udf44]|\\ud81b[\\ude97-\\ude9a\\udfe2]|\\ud82f[\\udc9f]|\\ud836[\\ude87-\\ude8b]|\\ud83a[\\udd5e-\\udd5f]"
};
var cjkPattern = json.cjkPattern,
kPattern = json.kPattern,
punctuationPattern = json.punctuationPattern;
var getLast$3 = util.getLast;
var INLINE_NODE_TYPES = ["liquidNode", "inlineCode", "emphasis", "strong", "delete", "link", "linkReference", "image", "imageReference", "footnote", "footnoteReference", "sentence", "whitespace", "word", "break", "inlineMath"];
var INLINE_NODE_WRAPPER_TYPES = INLINE_NODE_TYPES.concat(["tableCell", "paragraph", "heading"]);
var kRegex = new RegExp(kPattern);
var punctuationRegex = new RegExp(punctuationPattern);
/**
* split text into whitespaces and words
* @param {string} text
* @return {Array<{ type: "whitespace", value: " " | "\n" | "" } | { type: "word", value: string }>}
*/
function splitText(text, options) {
var KIND_NON_CJK = "non-cjk";
var KIND_CJ_LETTER = "cj-letter";
var KIND_K_LETTER = "k-letter";
var KIND_CJK_PUNCTUATION = "cjk-punctuation";
var nodes = [];
(options.proseWrap === "preserve" ? text : text.replace(new RegExp(`(${cjkPattern})\n(${cjkPattern})`, "g"), "$1$2")).split(/([ \t\n]+)/).forEach(function (token, index, tokens) {
// whitespace
if (index % 2 === 1) {
nodes.push({
type: "whitespace",
value: /\n/.test(token) ? "\n" : " "
});
return;
} // word separated by whitespace
if ((index === 0 || index === tokens.length - 1) && token === "") {
return;
}
token.split(new RegExp(`(${cjkPattern})`)).forEach(function (innerToken, innerIndex, innerTokens) {
if ((innerIndex === 0 || innerIndex === innerTokens.length - 1) && innerToken === "") {
return;
} // non-CJK word
if (innerIndex % 2 === 0) {
if (innerToken !== "") {
appendNode({
type: "word",
value: innerToken,
kind: KIND_NON_CJK,
hasLeadingPunctuation: punctuationRegex.test(innerToken[0]),
hasTrailingPunctuation: punctuationRegex.test(getLast$3(innerToken))
});
}
return;
} // CJK character
appendNode(punctuationRegex.test(innerToken) ? {
type: "word",
value: innerToken,
kind: KIND_CJK_PUNCTUATION,
hasLeadingPunctuation: true,
hasTrailingPunctuation: true
} : {
type: "word",
value: innerToken,
kind: kRegex.test(innerToken) ? KIND_K_LETTER : KIND_CJ_LETTER,
hasLeadingPunctuation: false,
hasTrailingPunctuation: false
});
});
});
return nodes;
function appendNode(node) {
var lastNode = getLast$3(nodes);
if (lastNode && lastNode.type === "word") {
if (lastNode.kind === KIND_NON_CJK && node.kind === KIND_CJ_LETTER && !lastNode.hasTrailingPunctuation || lastNode.kind === KIND_CJ_LETTER && node.kind === KIND_NON_CJK && !node.hasLeadingPunctuation) {
nodes.push({
type: "whitespace",
value: " "
});
} else if (!isBetween(KIND_NON_CJK, KIND_CJK_PUNCTUATION) && // disallow leading/trailing full-width whitespace
![lastNode.value, node.value].some(function (value) {
return /\u3000/.test(value);
})) {
nodes.push({
type: "whitespace",
value: ""
});
}
}
nodes.push(node);
function isBetween(kind1, kind2) {
return lastNode.kind === kind1 && node.kind === kind2 || lastNode.kind === kind2 && node.kind === kind1;
}
}
}
function getOrderedListItemInfo(orderListItem, originalText) {
var _originalText$slice$m = originalText.slice(orderListItem.position.start.offset, orderListItem.position.end.offset).match(/^\s*(\d+)(\.|\))(\s*)/),
_originalText$slice$m2 = _slicedToArray(_originalText$slice$m, 4),
numberText = _originalText$slice$m2[1],
marker = _originalText$slice$m2[2],
leadingSpaces = _originalText$slice$m2[3];
return {
numberText,
marker,
leadingSpaces
};
} // workaround for https://github.com/remarkjs/remark/issues/351
// leading and trailing newlines are stripped by remark
function getFencedCodeBlockValue(node, originalText) {
var text = originalText.slice(node.position.start.offset, node.position.end.offset);
var leadingSpaceCount = text.match(/^\s*/)[0].length;
var replaceRegex = new RegExp(`^\\s{0,${leadingSpaceCount}}`);
var lineContents = text.split("\n");
var markerStyle = text[leadingSpaceCount]; // ` or ~
var marker = text.slice(leadingSpaceCount).match(new RegExp(`^[${markerStyle}]+`))[0]; // https://spec.commonmark.org/0.28/#example-104: Closing fences may be indented by 0-3 spaces
// https://spec.commonmark.org/0.28/#example-93: The closing code fence must be at least as long as the opening fence
var hasEndMarker = new RegExp(`^\\s{0,3}${marker}`).test(lineContents[lineContents.length - 1].slice(getIndent(lineContents.length - 1)));
return lineContents.slice(1, hasEndMarker ? -1 : undefined).map(function (x, i) {
return x.slice(getIndent(i + 1)).replace(replaceRegex, "");
}).join("\n");
function getIndent(lineIndex) {
return node.position.indent[lineIndex - 1] - 1;
}
}
function mapAst(ast, handler) {
return function preorder(node, index, parentStack) {
parentStack = parentStack || [];
var newNode = handler(node, index, parentStack);
if (Array.isArray(newNode)) {
return newNode;
}
newNode = Object.assign({}, newNode);
if (newNode.children) {
newNode.children = newNode.children.reduce(function (nodes, child, index) {
var newNodes = preorder(child, index, [newNode].concat(parentStack));
if (!Array.isArray(newNodes)) {
newNodes = [newNodes];
}
nodes.push.apply(nodes, newNodes);
return nodes;
}, []);
}
return newNode;
}(ast, null, null);
}
var utils$4 = {
mapAst,
splitText,
punctuationPattern,
getFencedCodeBlockValue,
getOrderedListItemInfo,
INLINE_NODE_TYPES,
INLINE_NODE_WRAPPER_TYPES
};
var _require$$0$builders$6 = doc.builders,
hardline$a = _require$$0$builders$6.hardline,
literalline$4 = _require$$0$builders$6.literalline,
concat$c = _require$$0$builders$6.concat,
markAsRoot$2 = _require$$0$builders$6.markAsRoot,
mapDoc$5 = doc.utils.mapDoc;
var getFencedCodeBlockValue$1 = utils$4.getFencedCodeBlockValue;
function embed$2(path, print, textToDoc, options) {
var node = path.getValue();
if (node.type === "code" && node.lang !== null) {
// only look for the first string so as to support [markdown-preview-enhanced](https://shd101wyy.github.io/markdown-preview-enhanced/#/code-chunk)
var langMatch = node.lang.match(/^[A-Za-z0-9_-]+/);
var lang = langMatch ? langMatch[0] : "";
var parser = getParserName(lang);
if (parser) {
var styleUnit = options.__inJsTemplate ? "~" : "`";
var style = styleUnit.repeat(Math.max(3, util.getMaxContinuousCount(node.value, styleUnit) + 1));
var doc = textToDoc(getFencedCodeBlockValue$1(node, options.originalText), {
parser
});
return markAsRoot$2(concat$c([style, node.lang, hardline$a, replaceNewlinesWithLiterallines(doc), style]));
}
}
if (node.type === "yaml") {
return markAsRoot$2(concat$c(["---", hardline$a, node.value && node.value.trim() ? replaceNewlinesWithLiterallines(textToDoc(node.value, {
parser: "yaml"
})) : "", "---"]));
} // MDX
switch (node.type) {
case "importExport":
return textToDoc(node.value, {
parser: "babel"
});
case "jsx":
return textToDoc(node.value, {
parser: "__js_expression"
});
}
return null;
function getParserName(lang) {
var supportInfo = support.getSupportInfo(null, {
plugins: options.plugins
});
var language = supportInfo.languages.find(function (language) {
return language.name.toLowerCase() === lang || language.aliases && language.aliases.indexOf(lang) !== -1 || language.extensions && language.extensions.find(function (ext) {
return ext.substring(1) === lang;
});
});
if (language) {
return language.parsers[0];
}
return null;
}
function replaceNewlinesWithLiterallines(doc) {
return mapDoc$5(doc, function (currentDoc) {
return typeof currentDoc === "string" && currentDoc.includes("\n") ? concat$c(currentDoc.split(/(\n)/g).map(function (v, i) {
return i % 2 === 0 ? v : literalline$4;
})) : currentDoc;
});
}
}
var embed_1$2 = embed$2;
var pragmas = ["format", "prettier"];
function startWithPragma(text) {
var pragma = `@(${pragmas.join("|")})`;
var regex = new RegExp([``, ``].join("|"), "m");
var matched = text.match(regex);
return matched && matched.index === 0;
}
var pragma$3 = {
startWithPragma,
hasPragma: function hasPragma(text) {
return startWithPragma(frontMatter(text).content.trimLeft());
},
insertPragma: function insertPragma(text) {
var extracted = frontMatter(text);
var pragma = ``;
return extracted.frontMatter ? `${extracted.frontMatter.raw}\n\n${pragma}\n\n${extracted.content}` : `${pragma}\n\n${extracted.content}`;
}
};
var getOrderedListItemInfo$1 = utils$4.getOrderedListItemInfo,
mapAst$1 = utils$4.mapAst,
splitText$1 = utils$4.splitText; // 0x0 ~ 0x10ffff
// eslint-disable-next-line no-control-regex
var isSingleCharRegex = /^([\u0000-\uffff]|[\ud800-\udbff][\udc00-\udfff])$/;
function preprocess$1(ast, options) {
ast = restoreUnescapedCharacter(ast, options);
ast = mergeContinuousTexts(ast);
ast = transformInlineCode(ast);
ast = transformIndentedCodeblockAndMarkItsParentList(ast, options);
ast = markAlignedList(ast, options);
ast = splitTextIntoSentences(ast, options);
ast = transformImportExport(ast);
ast = mergeContinuousImportExport(ast);
return ast;
}
function transformImportExport(ast) {
return mapAst$1(ast, function (node) {
if (node.type !== "import" && node.type !== "export") {
return node;
}
return Object.assign({}, node, {
type: "importExport"
});
});
}
function transformInlineCode(ast) {
return mapAst$1(ast, function (node) {
if (node.type !== "inlineCode") {
return node;
}
return Object.assign({}, node, {
value: node.value.replace(/\s+/g, " ")
});
});
}
function restoreUnescapedCharacter(ast, options) {
return mapAst$1(ast, function (node) {
return node.type !== "text" ? node : Object.assign({}, node, {
value: node.value !== "*" && node.value !== "_" && node.value !== "$" && // handle these cases in printer
isSingleCharRegex.test(node.value) && node.position.end.offset - node.position.start.offset !== node.value.length ? options.originalText.slice(node.position.start.offset, node.position.end.offset) : node.value
});
});
}
function mergeContinuousImportExport(ast) {
return mergeChildren(ast, function (prevNode, node) {
return prevNode.type === "importExport" && node.type === "importExport";
}, function (prevNode, node) {
return {
type: "importExport",
value: prevNode.value + "\n\n" + node.value,
position: {
start: prevNode.position.start,
end: node.position.end
}
};
});
}
function mergeChildren(ast, shouldMerge, mergeNode) {
return mapAst$1(ast, function (node) {
if (!node.children) {
return node;
}
var children = node.children.reduce(function (current, child) {
var lastChild = current[current.length - 1];
if (lastChild && shouldMerge(lastChild, child)) {
current.splice(-1, 1, mergeNode(lastChild, child));
} else {
current.push(child);
}
return current;
}, []);
return Object.assign({}, node, {
children
});
});
}
function mergeContinuousTexts(ast) {
return mergeChildren(ast, function (prevNode, node) {
return prevNode.type === "text" && node.type === "text";
}, function (prevNode, node) {
return {
type: "text",
value: prevNode.value + node.value,
position: {
start: prevNode.position.start,
end: node.position.end
}
};
});
}
function splitTextIntoSentences(ast, options) {
return mapAst$1(ast, function (node, index, _ref) {
var _ref2 = _slicedToArray(_ref, 1),
parentNode = _ref2[0];
if (node.type !== "text") {
return node;
}
var value = node.value;
if (parentNode.type === "paragraph") {
if (index === 0) {
value = value.trimLeft();
}
if (index === parentNode.children.length - 1) {
value = value.trimRight();
}
}
return {
type: "sentence",
position: node.position,
children: splitText$1(value, options)
};
});
}
function transformIndentedCodeblockAndMarkItsParentList(ast, options) {
return mapAst$1(ast, function (node, index, parentStack) {
if (node.type === "code") {
// the first char may point to `\n`, e.g. `\n\t\tbar`, just ignore it
var isIndented = /^\n?( {4,}|\t)/.test(options.originalText.slice(node.position.start.offset, node.position.end.offset));
node.isIndented = isIndented;
if (isIndented) {
for (var i = 0; i < parentStack.length; i++) {
var parent = parentStack[i]; // no need to check checked items
if (parent.hasIndentedCodeblock) {
break;
}
if (parent.type === "list") {
parent.hasIndentedCodeblock = true;
}
}
}
}
return node;
});
}
function markAlignedList(ast, options) {
return mapAst$1(ast, function (node, index, parentStack) {
if (node.type === "list" && node.children.length !== 0) {
// if one of its parents is not aligned, it's not possible to be aligned in sub-lists
for (var i = 0; i < parentStack.length; i++) {
var parent = parentStack[i];
if (parent.type === "list" && !parent.isAligned) {
node.isAligned = false;
return node;
}
}
node.isAligned = isAligned(node);
}
return node;
});
function getListItemStart(listItem) {
return listItem.children.length === 0 ? -1 : listItem.children[0].position.start.column - 1;
}
function isAligned(list) {
if (!list.ordered) {
/**
* - 123
* - 123
*/
return true;
}
var _list$children = _slicedToArray(list.children, 2),
firstItem = _list$children[0],
secondItem = _list$children[1];
var firstInfo = getOrderedListItemInfo$1(firstItem, options.originalText);
if (firstInfo.leadingSpaces.length > 1) {
/**
* 1. 123
*
* 1. 123
* 1. 123
*/
return true;
}
var firstStart = getListItemStart(firstItem);
if (firstStart === -1) {
/**
* 1.
*
* 1.
* 1.
*/
return false;
}
if (list.children.length === 1) {
/**
* aligned:
*
* 11. 123
*
* not aligned:
*
* 1. 123
*/
return firstStart % options.tabWidth === 0;
}
var secondStart = getListItemStart(secondItem);
if (firstStart !== secondStart) {
/**
* 11. 123
* 1. 123
*
* 1. 123
* 11. 123
*/
return false;
}
if (firstStart % options.tabWidth === 0) {
/**
* 11. 123
* 12. 123
*/
return true;
}
/**
* aligned:
*
* 11. 123
* 1. 123
*
* not aligned:
*
* 1. 123
* 2. 123
*/
var secondInfo = getOrderedListItemInfo$1(secondItem, options.originalText);
return secondInfo.leadingSpaces.length > 1;
}
}
var preprocess_1$1 = preprocess$1;
var _require$$0$builders$7 = doc.builders,
breakParent$3 = _require$$0$builders$7.breakParent,
concat$d = _require$$0$builders$7.concat,
join$9 = _require$$0$builders$7.join,
line$6 = _require$$0$builders$7.line,
literalline$5 = _require$$0$builders$7.literalline,
markAsRoot$3 = _require$$0$builders$7.markAsRoot,
hardline$b = _require$$0$builders$7.hardline,
softline$6 = _require$$0$builders$7.softline,
ifBreak$5 = _require$$0$builders$7.ifBreak,
fill$4 = _require$$0$builders$7.fill,
align$2 = _require$$0$builders$7.align,
indent$8 = _require$$0$builders$7.indent,
group$d = _require$$0$builders$7.group,
mapDoc$6 = doc.utils.mapDoc,
printDocToString$3 = doc.printer.printDocToString;
var getFencedCodeBlockValue$2 = utils$4.getFencedCodeBlockValue,
getOrderedListItemInfo$2 = utils$4.getOrderedListItemInfo,
splitText$2 = utils$4.splitText,
punctuationPattern$1 = utils$4.punctuationPattern,
INLINE_NODE_TYPES$1 = utils$4.INLINE_NODE_TYPES,
INLINE_NODE_WRAPPER_TYPES$1 = utils$4.INLINE_NODE_WRAPPER_TYPES;
var replaceEndOfLineWith$1 = util.replaceEndOfLineWith;
var TRAILING_HARDLINE_NODES = ["importExport"];
var SINGLE_LINE_NODE_TYPES = ["heading", "tableCell", "link"];
var SIBLING_NODE_TYPES = ["listItem", "definition", "footnoteDefinition", "jsx"];
function genericPrint$4(path, options, print) {
var node = path.getValue();
if (shouldRemainTheSameContent(path)) {
return concat$d(splitText$2(options.originalText.slice(node.position.start.offset, node.position.end.offset), options).map(function (node) {
return node.type === "word" ? node.value : node.value === "" ? "" : printLine(path, node.value, options);
}));
}
switch (node.type) {
case "root":
if (node.children.length === 0) {
return "";
}
return concat$d([normalizeDoc(printRoot(path, options, print)), TRAILING_HARDLINE_NODES.indexOf(getLastDescendantNode(node).type) === -1 ? hardline$b : ""]);
case "paragraph":
return printChildren$1(path, options, print, {
postprocessor: fill$4
});
case "sentence":
return printChildren$1(path, options, print);
case "word":
return node.value.replace(/[*$]/g, "\\$&") // escape all `*` and `$` (math)
.replace(new RegExp([`(^|${punctuationPattern$1})(_+)`, `(_+)(${punctuationPattern$1}|$)`].join("|"), "g"), function (_, text1, underscore1, underscore2, text2) {
return (underscore1 ? `${text1}${underscore1}` : `${underscore2}${text2}`).replace(/_/g, "\\_");
});
// escape all `_` except concating with non-punctuation, e.g. `1_2_3` is not considered emphasis
case "whitespace":
{
var parentNode = path.getParentNode();
var index = parentNode.children.indexOf(node);
var nextNode = parentNode.children[index + 1];
var proseWrap = // leading char that may cause different syntax
nextNode && /^>|^([-+*]|#{1,6}|[0-9]+[.)])$/.test(nextNode.value) ? "never" : options.proseWrap;
return printLine(path, node.value, {
proseWrap
});
}
case "emphasis":
{
var _parentNode = path.getParentNode();
var _index = _parentNode.children.indexOf(node);
var prevNode = _parentNode.children[_index - 1];
var _nextNode = _parentNode.children[_index + 1];
var hasPrevOrNextWord = // `1*2*3` is considered emphasis but `1_2_3` is not
prevNode && prevNode.type === "sentence" && prevNode.children.length > 0 && util.getLast(prevNode.children).type === "word" && !util.getLast(prevNode.children).hasTrailingPunctuation || _nextNode && _nextNode.type === "sentence" && _nextNode.children.length > 0 && _nextNode.children[0].type === "word" && !_nextNode.children[0].hasLeadingPunctuation;
var style = hasPrevOrNextWord || getAncestorNode$2(path, "emphasis") ? "*" : "_";
return concat$d([style, printChildren$1(path, options, print), style]);
}
case "strong":
return concat$d(["**", printChildren$1(path, options, print), "**"]);
case "delete":
return concat$d(["~~", printChildren$1(path, options, print), "~~"]);
case "inlineCode":
{
var backtickCount = util.getMinNotPresentContinuousCount(node.value, "`");
var _style = "`".repeat(backtickCount || 1);
var gap = backtickCount ? " " : "";
return concat$d([_style, gap, node.value, gap, _style]);
}
case "link":
switch (options.originalText[node.position.start.offset]) {
case "<":
{
var mailto = "mailto:";
var url = // is parsed as { url: "mailto:hello@example.com" }
node.url.startsWith(mailto) && options.originalText.slice(node.position.start.offset + 1, node.position.start.offset + 1 + mailto.length) !== mailto ? node.url.slice(mailto.length) : node.url;
return concat$d(["<", url, ">"]);
}
case "[":
return concat$d(["[", printChildren$1(path, options, print), "](", printUrl(node.url, ")"), printTitle(node.title, options), ")"]);
default:
return options.originalText.slice(node.position.start.offset, node.position.end.offset);
}
case "image":
return concat$d(["![", node.alt || "", "](", printUrl(node.url, ")"), printTitle(node.title, options), ")"]);
case "blockquote":
return concat$d(["> ", align$2("> ", printChildren$1(path, options, print))]);
case "heading":
return concat$d(["#".repeat(node.depth) + " ", printChildren$1(path, options, print)]);
case "code":
{
if (node.isIndented) {
// indented code block
var alignment = " ".repeat(4);
return align$2(alignment, concat$d([alignment, concat$d(replaceEndOfLineWith$1(node.value, hardline$b))]));
} // fenced code block
var styleUnit = options.__inJsTemplate ? "~" : "`";
var _style2 = styleUnit.repeat(Math.max(3, util.getMaxContinuousCount(node.value, styleUnit) + 1));
return concat$d([_style2, node.lang || "", hardline$b, concat$d(replaceEndOfLineWith$1(getFencedCodeBlockValue$2(node, options.originalText), hardline$b)), hardline$b, _style2]);
}
case "yaml":
case "toml":
return options.originalText.slice(node.position.start.offset, node.position.end.offset);
case "html":
{
var _parentNode2 = path.getParentNode();
var value = _parentNode2.type === "root" && util.getLast(_parentNode2.children) === node ? node.value.trimRight() : node.value;
var isHtmlComment = /^$/.test(value);
return concat$d(replaceEndOfLineWith$1(value, isHtmlComment ? hardline$b : markAsRoot$3(literalline$5)));
}
case "list":
{
var nthSiblingIndex = getNthListSiblingIndex(node, path.getParentNode());
var isGitDiffFriendlyOrderedList = node.ordered && node.children.length > 1 && +getOrderedListItemInfo$2(node.children[1], options.originalText).numberText === 1;
return printChildren$1(path, options, print, {
processor: function processor(childPath, index) {
var prefix = getPrefix();
return concat$d([prefix, align$2(" ".repeat(prefix.length), printListItem(childPath, options, print, prefix))]);
function getPrefix() {
var rawPrefix = node.ordered ? (index === 0 ? node.start : isGitDiffFriendlyOrderedList ? 1 : node.start + index) + (nthSiblingIndex % 2 === 0 ? ". " : ") ") : nthSiblingIndex % 2 === 0 ? "- " : "* ";
return node.isAligned ||
/* workaround for https://github.com/remarkjs/remark/issues/315 */
node.hasIndentedCodeblock ? alignListPrefix(rawPrefix, options) : rawPrefix;
}
}
});
}
case "thematicBreak":
{
var counter = getAncestorCounter$1(path, "list");
if (counter === -1) {
return "---";
}
var _nthSiblingIndex = getNthListSiblingIndex(path.getParentNode(counter), path.getParentNode(counter + 1));
return _nthSiblingIndex % 2 === 0 ? "***" : "---";
}
case "linkReference":
return concat$d(["[", printChildren$1(path, options, print), "]", node.referenceType === "full" ? concat$d(["[", node.identifier, "]"]) : node.referenceType === "collapsed" ? "[]" : ""]);
case "imageReference":
switch (node.referenceType) {
case "full":
return concat$d(["![", node.alt || "", "][", node.identifier, "]"]);
default:
return concat$d(["![", node.alt, "]", node.referenceType === "collapsed" ? "[]" : ""]);
}
case "definition":
{
var lineOrSpace = options.proseWrap === "always" ? line$6 : " ";
return group$d(concat$d([concat$d(["[", node.identifier, "]:"]), indent$8(concat$d([lineOrSpace, printUrl(node.url), node.title === null ? "" : concat$d([lineOrSpace, printTitle(node.title, options, false)])]))]));
}
case "footnote":
return concat$d(["[^", printChildren$1(path, options, print), "]"]);
case "footnoteReference":
return concat$d(["[^", node.identifier, "]"]);
case "footnoteDefinition":
{
var _nextNode2 = path.getParentNode().children[path.getName() + 1];
var shouldInlineFootnote = node.children.length === 1 && node.children[0].type === "paragraph" && (options.proseWrap === "never" || options.proseWrap === "preserve" && node.children[0].position.start.line === node.children[0].position.end.line);
return concat$d(["[^", node.identifier, "]: ", shouldInlineFootnote ? printChildren$1(path, options, print) : group$d(concat$d([align$2(" ".repeat(options.tabWidth), printChildren$1(path, options, print, {
processor: function processor(childPath, index) {
return index === 0 ? group$d(concat$d([softline$6, softline$6, childPath.call(print)])) : childPath.call(print);
}
})), _nextNode2 && _nextNode2.type === "footnoteDefinition" ? softline$6 : ""]))]);
}
case "table":
return printTable(path, options, print);
case "tableCell":
return printChildren$1(path, options, print);
case "break":
return /\s/.test(options.originalText[node.position.start.offset]) ? concat$d([" ", markAsRoot$3(literalline$5)]) : concat$d(["\\", hardline$b]);
case "liquidNode":
return concat$d(replaceEndOfLineWith$1(node.value, hardline$b));
// MDX
case "importExport":
case "jsx":
return node.value;
// fallback to the original text if multiparser failed
case "math":
return concat$d(["$$", hardline$b, node.value ? concat$d([concat$d(replaceEndOfLineWith$1(node.value, hardline$b)), hardline$b]) : "", "$$"]);
case "inlineMath":
{
// remark-math trims content but we don't want to remove whitespaces
// since it's very possible that it's recognized as math accidentally
return options.originalText.slice(options.locStart(node), options.locEnd(node));
}
case "tableRow": // handled in "table"
case "listItem": // handled in "list"
default:
throw new Error(`Unknown markdown type ${JSON.stringify(node.type)}`);
}
}
function printListItem(path, options, print, listPrefix) {
var node = path.getValue();
var prefix = node.checked === null ? "" : node.checked ? "[x] " : "[ ] ";
return concat$d([prefix, printChildren$1(path, options, print, {
processor: function processor(childPath, index) {
if (index === 0 && childPath.getValue().type !== "list") {
return align$2(" ".repeat(prefix.length), childPath.call(print));
}
var alignment = " ".repeat(clamp(options.tabWidth - listPrefix.length, 0, 3) // 4+ will cause indented code block
);
return concat$d([alignment, align$2(alignment, childPath.call(print))]);
}
})]);
}
function alignListPrefix(prefix, options) {
var additionalSpaces = getAdditionalSpaces();
return prefix + " ".repeat(additionalSpaces >= 4 ? 0 : additionalSpaces // 4+ will cause indented code block
);
function getAdditionalSpaces() {
var restSpaces = prefix.length % options.tabWidth;
return restSpaces === 0 ? 0 : options.tabWidth - restSpaces;
}
}
function getNthListSiblingIndex(node, parentNode) {
return getNthSiblingIndex(node, parentNode, function (siblingNode) {
return siblingNode.ordered === node.ordered;
});
}
function getNthSiblingIndex(node, parentNode, condition) {
condition = condition || function () {
return true;
};
var index = -1;
var _iteratorNormalCompletion = true;
var _didIteratorError = false;
var _iteratorError = undefined;
try {
for (var _iterator = parentNode.children[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
var childNode = _step.value;
if (childNode.type === node.type && condition(childNode)) {
index++;
} else {
index = -1;
}
if (childNode === node) {
return index;
}
}
} catch (err) {
_didIteratorError = true;
_iteratorError = err;
} finally {
try {
if (!_iteratorNormalCompletion && _iterator.return != null) {
_iterator.return();
}
} finally {
if (_didIteratorError) {
throw _iteratorError;
}
}
}
}
function getAncestorCounter$1(path, typeOrTypes) {
var types = [].concat(typeOrTypes);
var counter = -1;
var ancestorNode;
while (ancestorNode = path.getParentNode(++counter)) {
if (types.indexOf(ancestorNode.type) !== -1) {
return counter;
}
}
return -1;
}
function getAncestorNode$2(path, typeOrTypes) {
var counter = getAncestorCounter$1(path, typeOrTypes);
return counter === -1 ? null : path.getParentNode(counter);
}
function printLine(path, value, options) {
if (options.proseWrap === "preserve" && value === "\n") {
return hardline$b;
}
var isBreakable = options.proseWrap === "always" && !getAncestorNode$2(path, SINGLE_LINE_NODE_TYPES);
return value !== "" ? isBreakable ? line$6 : " " : isBreakable ? softline$6 : "";
}
function printTable(path, options, print) {
var hardlineWithoutBreakParent = hardline$b.parts[0];
var node = path.getValue();
var contents = []; // { [rowIndex: number]: { [columnIndex: number]: string } }
path.map(function (rowPath) {
var rowContents = [];
rowPath.map(function (cellPath) {
rowContents.push(printDocToString$3(cellPath.call(print), options).formatted);
}, "children");
contents.push(rowContents);
}, "children"); // Get the width of each column
var columnMaxWidths = contents.reduce(function (currentWidths, rowContents) {
return currentWidths.map(function (width, columnIndex) {
return Math.max(width, util.getStringWidth(rowContents[columnIndex]));
});
}, contents[0].map(function () {
return 3;
}) // minimum width = 3 (---, :--, :-:, --:)
);
var alignedTable = join$9(hardlineWithoutBreakParent, [printRow(contents[0]), printSeparator(), join$9(hardlineWithoutBreakParent, contents.slice(1).map(function (rowContents) {
return printRow(rowContents);
}))]);
if (options.proseWrap !== "never") {
return concat$d([breakParent$3, alignedTable]);
} // Only if the --prose-wrap never is set and it exceeds the print width.
var compactTable = join$9(hardlineWithoutBreakParent, [printRow(contents[0],
/* isCompact */
true), printSeparator(
/* isCompact */
true), join$9(hardlineWithoutBreakParent, contents.slice(1).map(function (rowContents) {
return printRow(rowContents,
/* isCompact */
true);
}))]);
return concat$d([breakParent$3, group$d(ifBreak$5(compactTable, alignedTable))]);
function printSeparator(isCompact) {
return concat$d(["| ", join$9(" | ", columnMaxWidths.map(function (width, index) {
var spaces = isCompact ? 3 : width;
switch (node.align[index]) {
case "left":
return ":" + "-".repeat(spaces - 1);
case "right":
return "-".repeat(spaces - 1) + ":";
case "center":
return ":" + "-".repeat(spaces - 2) + ":";
default:
return "-".repeat(spaces);
}
})), " |"]);
}
function printRow(rowContents, isCompact) {
return concat$d(["| ", join$9(" | ", isCompact ? rowContents : rowContents.map(function (rowContent, columnIndex) {
switch (node.align[columnIndex]) {
case "right":
return alignRight(rowContent, columnMaxWidths[columnIndex]);
case "center":
return alignCenter(rowContent, columnMaxWidths[columnIndex]);
default:
return alignLeft(rowContent, columnMaxWidths[columnIndex]);
}
})), " |"]);
}
function alignLeft(text, width) {
var spaces = width - util.getStringWidth(text);
return concat$d([text, " ".repeat(spaces)]);
}
function alignRight(text, width) {
var spaces = width - util.getStringWidth(text);
return concat$d([" ".repeat(spaces), text]);
}
function alignCenter(text, width) {
var spaces = width - util.getStringWidth(text);
var left = Math.floor(spaces / 2);
var right = spaces - left;
return concat$d([" ".repeat(left), text, " ".repeat(right)]);
}
}
function printRoot(path, options, print) {
/** @typedef {{ index: number, offset: number }} IgnorePosition */
/** @type {Array<{start: IgnorePosition, end: IgnorePosition}>} */
var ignoreRanges = [];
/** @type {IgnorePosition | null} */
var ignoreStart = null;
var children = path.getValue().children;
children.forEach(function (childNode, index) {
switch (isPrettierIgnore(childNode)) {
case "start":
if (ignoreStart === null) {
ignoreStart = {
index,
offset: childNode.position.end.offset
};
}
break;
case "end":
if (ignoreStart !== null) {
ignoreRanges.push({
start: ignoreStart,
end: {
index,
offset: childNode.position.start.offset
}
});
ignoreStart = null;
}
break;
}
});
return printChildren$1(path, options, print, {
processor: function processor(childPath, index) {
if (ignoreRanges.length !== 0) {
var ignoreRange = ignoreRanges[0];
if (index === ignoreRange.start.index) {
return concat$d([children[ignoreRange.start.index].value, options.originalText.slice(ignoreRange.start.offset, ignoreRange.end.offset), children[ignoreRange.end.index].value]);
}
if (ignoreRange.start.index < index && index < ignoreRange.end.index) {
return false;
}
if (index === ignoreRange.end.index) {
ignoreRanges.shift();
return false;
}
}
return childPath.call(print);
}
});
}
function printChildren$1(path, options, print, events) {
events = events || {};
var postprocessor = events.postprocessor || concat$d;
var processor = events.processor || function (childPath) {
return childPath.call(print);
};
var node = path.getValue();
var parts = [];
var lastChildNode;
path.map(function (childPath, index) {
var childNode = childPath.getValue();
var result = processor(childPath, index);
if (result !== false) {
var data = {
parts,
prevNode: lastChildNode,
parentNode: node,
options
};
if (!shouldNotPrePrintHardline(childNode, data)) {
parts.push(hardline$b);
if (lastChildNode && TRAILING_HARDLINE_NODES.indexOf(lastChildNode.type) !== -1) {
if (shouldPrePrintTripleHardline(childNode, data)) {
parts.push(hardline$b);
}
} else {
if (shouldPrePrintDoubleHardline(childNode, data) || shouldPrePrintTripleHardline(childNode, data)) {
parts.push(hardline$b);
}
if (shouldPrePrintTripleHardline(childNode, data)) {
parts.push(hardline$b);
}
}
}
parts.push(result);
lastChildNode = childNode;
}
}, "children");
return postprocessor(parts);
}
function getLastDescendantNode(node) {
var current = node;
while (current.children && current.children.length !== 0) {
current = current.children[current.children.length - 1];
}
return current;
}
/** @return {false | 'next' | 'start' | 'end'} */
function isPrettierIgnore(node) {
if (node.type !== "html") {
return false;
}
var match = node.value.match(/^$/);
return match === null ? false : match[1] ? match[1] : "next";
}
function isInlineNode(node) {
return node && INLINE_NODE_TYPES$1.indexOf(node.type) !== -1;
}
function isEndsWithHardLine(node) {
return node && /\n+$/.test(node.value);
}
function last(nodes) {
return nodes && nodes[nodes.length - 1];
}
function shouldNotPrePrintHardline(node, _ref) {
var parentNode = _ref.parentNode,
parts = _ref.parts,
prevNode = _ref.prevNode;
var isFirstNode = parts.length === 0;
var isInlineHTML = node.type === "html" && INLINE_NODE_WRAPPER_TYPES$1.indexOf(parentNode.type) !== -1;
var isAfterHardlineNode = prevNode && (isEndsWithHardLine(prevNode) || isEndsWithHardLine(last(prevNode.children)));
return isFirstNode || isInlineNode(node) || isInlineHTML || isAfterHardlineNode;
}
function shouldPrePrintDoubleHardline(node, _ref2) {
var parentNode = _ref2.parentNode,
prevNode = _ref2.prevNode;
var prevNodeType = prevNode && prevNode.type;
var nodeType = node.type;
var isSequence = prevNodeType === nodeType;
var isSiblingNode = isSequence && SIBLING_NODE_TYPES.indexOf(nodeType) !== -1;
var isInTightListItem = parentNode.type === "listItem" && !parentNode.loose;
var isPrevNodeLooseListItem = prevNodeType === "listItem" && prevNode.loose;
var isPrevNodePrettierIgnore = isPrettierIgnore(prevNode) === "next";
var isBlockHtmlWithoutBlankLineBetweenPrevHtml = nodeType === "html" && prevNodeType === "html" && prevNode.position.end.line + 1 === node.position.start.line;
var isJsxInlineSibling = prevNodeType === "jsx" && isInlineNode(node) || nodeType === "jsx" && isInlineNode(prevNode);
return isPrevNodeLooseListItem || !(isSiblingNode || isInTightListItem || isPrevNodePrettierIgnore || isBlockHtmlWithoutBlankLineBetweenPrevHtml || isJsxInlineSibling);
}
function shouldPrePrintTripleHardline(node, data) {
var isPrevNodeList = data.prevNode && data.prevNode.type === "list";
var isIndentedCode = node.type === "code" && node.isIndented;
return isPrevNodeList && isIndentedCode;
}
function shouldRemainTheSameContent(path) {
var ancestorNode = getAncestorNode$2(path, ["linkReference", "imageReference"]);
return ancestorNode && (ancestorNode.type !== "linkReference" || ancestorNode.referenceType !== "full");
}
function normalizeDoc(doc) {
return mapDoc$6(doc, function (currentDoc) {
if (!currentDoc.parts) {
return currentDoc;
}
if (currentDoc.type === "concat" && currentDoc.parts.length === 1) {
return currentDoc.parts[0];
}
var parts = [];
currentDoc.parts.forEach(function (part) {
if (part.type === "concat") {
parts.push.apply(parts, part.parts);
} else if (part !== "") {
parts.push(part);
}
});
return Object.assign({}, currentDoc, {
parts: normalizeParts(parts)
});
});
}
function printUrl(url, dangerousCharOrChars) {
var dangerousChars = [" "].concat(dangerousCharOrChars || []);
return new RegExp(dangerousChars.map(function (x) {
return `\\${x}`;
}).join("|")).test(url) ? `<${url}>` : url;
}
function printTitle(title, options, printSpace) {
if (printSpace == null) {
printSpace = true;
}
if (!title) {
return "";
}
if (printSpace) {
return " " + printTitle(title, options, false);
}
if (title.includes('"') && title.includes("'") && !title.includes(")")) {
return `(${title})`; // avoid escaped quotes
} // faster than using RegExps: https://jsperf.com/performance-of-match-vs-split
var singleCount = title.split("'").length - 1;
var doubleCount = title.split('"').length - 1;
var quote = singleCount > doubleCount ? '"' : doubleCount > singleCount ? "'" : options.singleQuote ? "'" : '"';
title = title.replace(new RegExp(`(${quote})`, "g"), "\\$1");
return `${quote}${title}${quote}`;
}
function normalizeParts(parts) {
return parts.reduce(function (current, part) {
var lastPart = util.getLast(current);
if (typeof lastPart === "string" && typeof part === "string") {
current.splice(-1, 1, lastPart + part);
} else {
current.push(part);
}
return current;
}, []);
}
function clamp(value, min, max) {
return value < min ? min : value > max ? max : value;
}
function clean$5(ast, newObj, parent) {
delete newObj.position;
delete newObj.raw; // front-matter
// for codeblock
if (ast.type === "code" || ast.type === "yaml" || ast.type === "import" || ast.type === "export" || ast.type === "jsx") {
delete newObj.value;
}
if (ast.type === "list") {
delete newObj.isAligned;
} // texts can be splitted or merged
if (ast.type === "text") {
return null;
}
if (ast.type === "inlineCode") {
newObj.value = ast.value.replace(/[ \t\n]+/g, " ");
} // for insert pragma
if (parent && parent.type === "root" && parent.children.length > 0 && (parent.children[0] === ast || (parent.children[0].type === "yaml" || parent.children[0].type === "toml") && parent.children[1] === ast) && ast.type === "html" && pragma$3.startWithPragma(ast.value)) {
return null;
}
}
function hasPrettierIgnore$2(path) {
var index = +path.getName();
if (index === 0) {
return false;
}
var prevNode = path.getParentNode().children[index - 1];
return isPrettierIgnore(prevNode) === "next";
}
var printerMarkdown = {
preprocess: preprocess_1$1,
print: genericPrint$4,
embed: embed_1$2,
massageAstNode: clean$5,
hasPrettierIgnore: hasPrettierIgnore$2,
insertPragma: pragma$3.insertPragma
};
var options$5 = {
proseWrap: commonOptions.proseWrap,
singleQuote: commonOptions.singleQuote
};
var name$f = "Markdown";
var type$d = "prose";
var aliases$4 = [
"pandoc"
];
var aceMode$d = "markdown";
var codemirrorMode$a = "gfm";
var codemirrorMimeType$a = "text/x-gfm";
var wrap = true;
var extensions$d = [
".md",
".markdown",
".mdown",
".mdwn",
".mdx",
".mkd",
".mkdn",
".mkdown",
".ronn",
".workbook"
];
var filenames$3 = [
"contents.lr"
];
var tmScope$d = "source.gfm";
var languageId$d = 222;
var Markdown = {
name: name$f,
type: type$d,
aliases: aliases$4,
aceMode: aceMode$d,
codemirrorMode: codemirrorMode$a,
codemirrorMimeType: codemirrorMimeType$a,
wrap: wrap,
extensions: extensions$d,
filenames: filenames$3,
tmScope: tmScope$d,
languageId: languageId$d
};
var Markdown$1 = /*#__PURE__*/Object.freeze({
__proto__: null,
name: name$f,
type: type$d,
aliases: aliases$4,
aceMode: aceMode$d,
codemirrorMode: codemirrorMode$a,
codemirrorMimeType: codemirrorMimeType$a,
wrap: wrap,
extensions: extensions$d,
filenames: filenames$3,
tmScope: tmScope$d,
languageId: languageId$d,
'default': Markdown
});
var require$$0$5 = getCjsExportFromNamespace(Markdown$1);
var languages$4 = [createLanguage(require$$0$5, function (data) {
return Object.assign(data, {
since: "1.8.0",
parsers: ["remark"],
vscodeLanguageIds: ["markdown"],
filenames: data.filenames.concat(["README"]),
extensions: data.extensions.filter(function (extension) {
return extension !== ".mdx";
})
});
}), createLanguage(require$$0$5, function (data) {
return Object.assign(data, {
name: "MDX",
since: "1.15.0",
parsers: ["mdx"],
vscodeLanguageIds: ["mdx"],
filenames: [],
extensions: [".mdx"]
});
})];
var printers$4 = {
mdast: printerMarkdown
};
var languageMarkdown = {
languages: languages$4,
options: options$5,
printers: printers$4
};
var clean$6 = function clean(ast, newNode) {
delete newNode.sourceSpan;
delete newNode.startSourceSpan;
delete newNode.endSourceSpan;
delete newNode.nameSpan;
delete newNode.valueSpan;
if (ast.type === "text" || ast.type === "comment") {
return null;
} // may be formatted by multiparser
if (ast.type === "yaml" || ast.type === "toml") {
return null;
}
if (ast.type === "attribute") {
delete newNode.value;
}
if (ast.type === "docType") {
delete newNode.value;
}
};
var json$1 = {
"CSS_DISPLAY_TAGS": {
"area": "none",
"base": "none",
"basefont": "none",
"datalist": "none",
"head": "none",
"link": "none",
"meta": "none",
"noembed": "none",
"noframes": "none",
"param": "none",
"rp": "none",
"script": "block",
"source": "block",
"style": "none",
"template": "inline",
"track": "block",
"title": "none",
"html": "block",
"body": "block",
"address": "block",
"blockquote": "block",
"center": "block",
"div": "block",
"figure": "block",
"figcaption": "block",
"footer": "block",
"form": "block",
"header": "block",
"hr": "block",
"legend": "block",
"listing": "block",
"main": "block",
"p": "block",
"plaintext": "block",
"pre": "block",
"xmp": "block",
"slot": "contents",
"ruby": "ruby",
"rt": "ruby-text",
"article": "block",
"aside": "block",
"h1": "block",
"h2": "block",
"h3": "block",
"h4": "block",
"h5": "block",
"h6": "block",
"hgroup": "block",
"nav": "block",
"section": "block",
"dir": "block",
"dd": "block",
"dl": "block",
"dt": "block",
"ol": "block",
"ul": "block",
"li": "list-item",
"table": "table",
"caption": "table-caption",
"colgroup": "table-column-group",
"col": "table-column",
"thead": "table-header-group",
"tbody": "table-row-group",
"tfoot": "table-footer-group",
"tr": "table-row",
"td": "table-cell",
"th": "table-cell",
"fieldset": "block",
"button": "inline-block",
"video": "inline-block",
"audio": "inline-block"
},
"CSS_DISPLAY_DEFAULT": "inline",
"CSS_WHITE_SPACE_TAGS": {
"listing": "pre",
"plaintext": "pre",
"pre": "pre",
"xmp": "pre",
"nobr": "nowrap",
"table": "initial",
"textarea": "pre-wrap"
},
"CSS_WHITE_SPACE_DEFAULT": "normal"
};
var a = [
"accesskey",
"charset",
"coords",
"download",
"href",
"hreflang",
"name",
"ping",
"referrerpolicy",
"rel",
"rev",
"shape",
"tabindex",
"target",
"type"
];
var abbr = [
"title"
];
var applet = [
"align",
"alt",
"archive",
"code",
"codebase",
"height",
"hspace",
"name",
"object",
"vspace",
"width"
];
var area = [
"accesskey",
"alt",
"coords",
"download",
"href",
"hreflang",
"nohref",
"ping",
"referrerpolicy",
"rel",
"shape",
"tabindex",
"target",
"type"
];
var audio = [
"autoplay",
"controls",
"crossorigin",
"loop",
"muted",
"preload",
"src"
];
var base = [
"href",
"target"
];
var basefont = [
"color",
"face",
"size"
];
var bdo = [
"dir"
];
var blockquote = [
"cite"
];
var body = [
"alink",
"background",
"bgcolor",
"link",
"text",
"vlink"
];
var br = [
"clear"
];
var button = [
"accesskey",
"autofocus",
"disabled",
"form",
"formaction",
"formenctype",
"formmethod",
"formnovalidate",
"formtarget",
"name",
"tabindex",
"type",
"value"
];
var canvas = [
"height",
"width"
];
var caption = [
"align"
];
var col = [
"align",
"char",
"charoff",
"span",
"valign",
"width"
];
var colgroup = [
"align",
"char",
"charoff",
"span",
"valign",
"width"
];
var data$1 = [
"value"
];
var del$1 = [
"cite",
"datetime"
];
var details = [
"open"
];
var dfn = [
"title"
];
var dialog = [
"open"
];
var dir = [
"compact"
];
var div = [
"align"
];
var dl = [
"compact"
];
var embed$3 = [
"height",
"src",
"type",
"width"
];
var fieldset = [
"disabled",
"form",
"name"
];
var font = [
"color",
"face",
"size"
];
var form = [
"accept",
"accept-charset",
"action",
"autocomplete",
"enctype",
"method",
"name",
"novalidate",
"target"
];
var frame = [
"frameborder",
"longdesc",
"marginheight",
"marginwidth",
"name",
"noresize",
"scrolling",
"src"
];
var frameset = [
"cols",
"rows"
];
var h1 = [
"align"
];
var h2 = [
"align"
];
var h3 = [
"align"
];
var h4 = [
"align"
];
var h5 = [
"align"
];
var h6 = [
"align"
];
var head = [
"profile"
];
var hr = [
"align",
"noshade",
"size",
"width"
];
var html = [
"manifest",
"version"
];
var iframe = [
"align",
"allow",
"allowfullscreen",
"allowpaymentrequest",
"allowusermedia",
"frameborder",
"height",
"longdesc",
"marginheight",
"marginwidth",
"name",
"referrerpolicy",
"sandbox",
"scrolling",
"src",
"srcdoc",
"width"
];
var img = [
"align",
"alt",
"border",
"crossorigin",
"decoding",
"height",
"hspace",
"ismap",
"longdesc",
"name",
"referrerpolicy",
"sizes",
"src",
"srcset",
"usemap",
"vspace",
"width"
];
var input = [
"accept",
"accesskey",
"align",
"alt",
"autocomplete",
"autofocus",
"checked",
"dirname",
"disabled",
"form",
"formaction",
"formenctype",
"formmethod",
"formnovalidate",
"formtarget",
"height",
"ismap",
"list",
"max",
"maxlength",
"min",
"minlength",
"multiple",
"name",
"pattern",
"placeholder",
"readonly",
"required",
"size",
"src",
"step",
"tabindex",
"title",
"type",
"usemap",
"value",
"width"
];
var ins = [
"cite",
"datetime"
];
var isindex = [
"prompt"
];
var label = [
"accesskey",
"for",
"form"
];
var legend = [
"accesskey",
"align"
];
var li = [
"type",
"value"
];
var link$1 = [
"as",
"charset",
"color",
"crossorigin",
"href",
"hreflang",
"imagesizes",
"imagesrcset",
"integrity",
"media",
"nonce",
"referrerpolicy",
"rel",
"rev",
"sizes",
"target",
"title",
"type"
];
var map$1 = [
"name"
];
var menu = [
"compact"
];
var meta = [
"charset",
"content",
"http-equiv",
"name",
"scheme"
];
var meter = [
"high",
"low",
"max",
"min",
"optimum",
"value"
];
var object = [
"align",
"archive",
"border",
"classid",
"codebase",
"codetype",
"data",
"declare",
"form",
"height",
"hspace",
"name",
"standby",
"tabindex",
"type",
"typemustmatch",
"usemap",
"vspace",
"width"
];
var ol = [
"compact",
"reversed",
"start",
"type"
];
var optgroup = [
"disabled",
"label"
];
var option = [
"disabled",
"label",
"selected",
"value"
];
var output = [
"for",
"form",
"name"
];
var p = [
"align"
];
var param = [
"name",
"type",
"value",
"valuetype"
];
var pre = [
"width"
];
var progress = [
"max",
"value"
];
var q = [
"cite"
];
var script = [
"async",
"charset",
"crossorigin",
"defer",
"integrity",
"language",
"nomodule",
"nonce",
"referrerpolicy",
"src",
"type"
];
var select = [
"autocomplete",
"autofocus",
"disabled",
"form",
"multiple",
"name",
"required",
"size",
"tabindex"
];
var slot = [
"name"
];
var source = [
"media",
"sizes",
"src",
"srcset",
"type"
];
var style = [
"media",
"nonce",
"title",
"type"
];
var table = [
"align",
"bgcolor",
"border",
"cellpadding",
"cellspacing",
"frame",
"rules",
"summary",
"width"
];
var tbody = [
"align",
"char",
"charoff",
"valign"
];
var td = [
"abbr",
"align",
"axis",
"bgcolor",
"char",
"charoff",
"colspan",
"headers",
"height",
"nowrap",
"rowspan",
"scope",
"valign",
"width"
];
var textarea = [
"accesskey",
"autocomplete",
"autofocus",
"cols",
"dirname",
"disabled",
"form",
"maxlength",
"minlength",
"name",
"placeholder",
"readonly",
"required",
"rows",
"tabindex",
"wrap"
];
var tfoot = [
"align",
"char",
"charoff",
"valign"
];
var th = [
"abbr",
"align",
"axis",
"bgcolor",
"char",
"charoff",
"colspan",
"headers",
"height",
"nowrap",
"rowspan",
"scope",
"valign",
"width"
];
var thead = [
"align",
"char",
"charoff",
"valign"
];
var time = [
"datetime"
];
var tr = [
"align",
"bgcolor",
"char",
"charoff",
"valign"
];
var track = [
"default",
"kind",
"label",
"src",
"srclang"
];
var ul = [
"compact",
"type"
];
var video = [
"autoplay",
"controls",
"crossorigin",
"height",
"loop",
"muted",
"playsinline",
"poster",
"preload",
"src",
"width"
];
var index$1 = {
"*": [
"accesskey",
"autocapitalize",
"autofocus",
"class",
"contenteditable",
"dir",
"draggable",
"enterkeyhint",
"hidden",
"id",
"inputmode",
"is",
"itemid",
"itemprop",
"itemref",
"itemscope",
"itemtype",
"lang",
"nonce",
"slot",
"spellcheck",
"style",
"tabindex",
"title",
"translate"
],
a: a,
abbr: abbr,
applet: applet,
area: area,
audio: audio,
base: base,
basefont: basefont,
bdo: bdo,
blockquote: blockquote,
body: body,
br: br,
button: button,
canvas: canvas,
caption: caption,
col: col,
colgroup: colgroup,
data: data$1,
del: del$1,
details: details,
dfn: dfn,
dialog: dialog,
dir: dir,
div: div,
dl: dl,
embed: embed$3,
fieldset: fieldset,
font: font,
form: form,
frame: frame,
frameset: frameset,
h1: h1,
h2: h2,
h3: h3,
h4: h4,
h5: h5,
h6: h6,
head: head,
hr: hr,
html: html,
iframe: iframe,
img: img,
input: input,
ins: ins,
isindex: isindex,
label: label,
legend: legend,
li: li,
link: link$1,
map: map$1,
menu: menu,
meta: meta,
meter: meter,
object: object,
ol: ol,
optgroup: optgroup,
option: option,
output: output,
p: p,
param: param,
pre: pre,
progress: progress,
q: q,
script: script,
select: select,
slot: slot,
source: source,
style: style,
table: table,
tbody: tbody,
td: td,
textarea: textarea,
tfoot: tfoot,
th: th,
thead: thead,
time: time,
tr: tr,
track: track,
ul: ul,
video: video
};
var htmlElementAttributes = /*#__PURE__*/Object.freeze({
__proto__: null,
a: a,
abbr: abbr,
applet: applet,
area: area,
audio: audio,
base: base,
basefont: basefont,
bdo: bdo,
blockquote: blockquote,
body: body,
br: br,
button: button,
canvas: canvas,
caption: caption,
col: col,
colgroup: colgroup,
data: data$1,
del: del$1,
details: details,
dfn: dfn,
dialog: dialog,
dir: dir,
div: div,
dl: dl,
embed: embed$3,
fieldset: fieldset,
font: font,
form: form,
frame: frame,
frameset: frameset,
h1: h1,
h2: h2,
h3: h3,
h4: h4,
h5: h5,
h6: h6,
head: head,
hr: hr,
html: html,
iframe: iframe,
img: img,
input: input,
ins: ins,
isindex: isindex,
label: label,
legend: legend,
li: li,
link: link$1,
map: map$1,
menu: menu,
meta: meta,
meter: meter,
object: object,
ol: ol,
optgroup: optgroup,
option: option,
output: output,
p: p,
param: param,
pre: pre,
progress: progress,
q: q,
script: script,
select: select,
slot: slot,
source: source,
style: style,
table: table,
tbody: tbody,
td: td,
textarea: textarea,
tfoot: tfoot,
th: th,
thead: thead,
time: time,
tr: tr,
track: track,
ul: ul,
video: video,
'default': index$1
});
var htmlElementAttributes$1 = getCjsExportFromNamespace(htmlElementAttributes);
var CSS_DISPLAY_TAGS = json$1.CSS_DISPLAY_TAGS,
CSS_DISPLAY_DEFAULT = json$1.CSS_DISPLAY_DEFAULT,
CSS_WHITE_SPACE_TAGS = json$1.CSS_WHITE_SPACE_TAGS,
CSS_WHITE_SPACE_DEFAULT = json$1.CSS_WHITE_SPACE_DEFAULT;
var HTML_TAGS = arrayToMap(htmlTagNames$1);
var HTML_ELEMENT_ATTRIBUTES = mapObject(htmlElementAttributes$1, arrayToMap);
function arrayToMap(array) {
var map = Object.create(null);
var _iteratorNormalCompletion = true;
var _didIteratorError = false;
var _iteratorError = undefined;
try {
for (var _iterator = array[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
var value = _step.value;
map[value] = true;
}
} catch (err) {
_didIteratorError = true;
_iteratorError = err;
} finally {
try {
if (!_iteratorNormalCompletion && _iterator.return != null) {
_iterator.return();
}
} finally {
if (_didIteratorError) {
throw _iteratorError;
}
}
}
return map;
}
function mapObject(object, fn) {
var newObject = Object.create(null);
for (var _i = 0, _Object$keys = Object.keys(object); _i < _Object$keys.length; _i++) {
var key = _Object$keys[_i];
newObject[key] = fn(object[key], key);
}
return newObject;
}
function shouldPreserveContent(node, options) {
if (node.type === "element" && node.fullName === "template" && node.attrMap.lang && node.attrMap.lang !== "html") {
return true;
} // unterminated node in ie conditional comment
// e.g.
if (node.type === "ieConditionalComment" && node.lastChild && !node.lastChild.isSelfClosing && !node.lastChild.endSourceSpan) {
return true;
} // incomplete html in ie conditional comment
// e.g.
if (node.type === "ieConditionalComment" && !node.complete) {
return true;
} // top-level elements (excluding ,