| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540 | "use strict";Object.defineProperty(exports, "__esModule", {  value: true});exports.default = void 0;var _buffer = require("./buffer");var n = require("./node");var _t = require("@babel/types");var generatorFunctions = require("./generators");const {  isProgram,  isFile,  isEmptyStatement} = _t;const SCIENTIFIC_NOTATION = /e/i;const ZERO_DECIMAL_INTEGER = /\.0+$/;const NON_DECIMAL_LITERAL = /^0[box]/;const PURE_ANNOTATION_RE = /^\s*[@#]__PURE__\s*$/;const {  needsParens,  needsWhitespaceAfter,  needsWhitespaceBefore} = n;class Printer {  constructor(format, map) {    this.inForStatementInitCounter = 0;    this._printStack = [];    this._indent = 0;    this._insideAux = false;    this._parenPushNewlineState = null;    this._noLineTerminator = false;    this._printAuxAfterOnNextUserNode = false;    this._printedComments = new WeakSet();    this._endsWithInteger = false;    this._endsWithWord = false;    this.format = format;    this._buf = new _buffer.default(map);  }  generate(ast) {    this.print(ast);    this._maybeAddAuxComment();    return this._buf.get();  }  indent() {    if (this.format.compact || this.format.concise) return;    this._indent++;  }  dedent() {    if (this.format.compact || this.format.concise) return;    this._indent--;  }  semicolon(force = false) {    this._maybeAddAuxComment();    this._append(";", !force);  }  rightBrace() {    if (this.format.minified) {      this._buf.removeLastSemicolon();    }    this.token("}");  }  space(force = false) {    if (this.format.compact) return;    if (force) {      this._space();    } else if (this._buf.hasContent()) {      const lastCp = this.getLastChar();      if (lastCp !== 32 && lastCp !== 10) {        this._space();      }    }  }  word(str) {    if (this._endsWithWord || this.endsWith(47) && str.charCodeAt(0) === 47) {      this._space();    }    this._maybeAddAuxComment();    this._append(str);    this._endsWithWord = true;  }  number(str) {    this.word(str);    this._endsWithInteger = Number.isInteger(+str) && !NON_DECIMAL_LITERAL.test(str) && !SCIENTIFIC_NOTATION.test(str) && !ZERO_DECIMAL_INTEGER.test(str) && str.charCodeAt(str.length - 1) !== 46;  }  token(str) {    const lastChar = this.getLastChar();    const strFirst = str.charCodeAt(0);    if (str === "--" && lastChar === 33 || strFirst === 43 && lastChar === 43 || strFirst === 45 && lastChar === 45 || strFirst === 46 && this._endsWithInteger) {      this._space();    }    this._maybeAddAuxComment();    this._append(str);  }  newline(i = 1) {    if (this.format.retainLines || this.format.compact) return;    if (this.format.concise) {      this.space();      return;    }    const charBeforeNewline = this.endsWithCharAndNewline();    if (charBeforeNewline === 10) return;    if (charBeforeNewline === 123 || charBeforeNewline === 58) {      i--;    }    if (i <= 0) return;    for (let j = 0; j < i; j++) {      this._newline();    }  }  endsWith(char) {    return this.getLastChar() === char;  }  getLastChar() {    return this._buf.getLastChar();  }  endsWithCharAndNewline() {    return this._buf.endsWithCharAndNewline();  }  removeTrailingNewline() {    this._buf.removeTrailingNewline();  }  exactSource(loc, cb) {    this._catchUp("start", loc);    this._buf.exactSource(loc, cb);  }  source(prop, loc) {    this._catchUp(prop, loc);    this._buf.source(prop, loc);  }  withSource(prop, loc, cb) {    this._catchUp(prop, loc);    this._buf.withSource(prop, loc, cb);  }  _space() {    this._append(" ", true);  }  _newline() {    this._append("\n", true);  }  _append(str, queue = false) {    this._maybeAddParen(str);    this._maybeIndent(str);    if (queue) this._buf.queue(str);else this._buf.append(str);    this._endsWithWord = false;    this._endsWithInteger = false;  }  _maybeIndent(str) {    if (this._indent && this.endsWith(10) && str.charCodeAt(0) !== 10) {      this._buf.queue(this._getIndent());    }  }  _maybeAddParen(str) {    const parenPushNewlineState = this._parenPushNewlineState;    if (!parenPushNewlineState) return;    let i;    for (i = 0; i < str.length && str[i] === " "; i++) continue;    if (i === str.length) {      return;    }    const cha = str[i];    if (cha !== "\n") {      if (cha !== "/" || i + 1 === str.length) {        this._parenPushNewlineState = null;        return;      }      const chaPost = str[i + 1];      if (chaPost === "*") {        if (PURE_ANNOTATION_RE.test(str.slice(i + 2, str.length - 2))) {          return;        }      } else if (chaPost !== "/") {        this._parenPushNewlineState = null;        return;      }    }    this.token("(");    this.indent();    parenPushNewlineState.printed = true;  }  _catchUp(prop, loc) {    if (!this.format.retainLines) return;    const pos = loc ? loc[prop] : null;    if ((pos == null ? void 0 : pos.line) != null) {      const count = pos.line - this._buf.getCurrentLine();      for (let i = 0; i < count; i++) {        this._newline();      }    }  }  _getIndent() {    return this.format.indent.style.repeat(this._indent);  }  startTerminatorless(isLabel = false) {    if (isLabel) {      this._noLineTerminator = true;      return null;    } else {      return this._parenPushNewlineState = {        printed: false      };    }  }  endTerminatorless(state) {    this._noLineTerminator = false;    if (state != null && state.printed) {      this.dedent();      this.newline();      this.token(")");    }  }  print(node, parent) {    if (!node) return;    const oldConcise = this.format.concise;    if (node._compact) {      this.format.concise = true;    }    const printMethod = this[node.type];    if (!printMethod) {      throw new ReferenceError(`unknown node of type ${JSON.stringify(node.type)} with constructor ${JSON.stringify(node == null ? void 0 : node.constructor.name)}`);    }    this._printStack.push(node);    const oldInAux = this._insideAux;    this._insideAux = !node.loc;    this._maybeAddAuxComment(this._insideAux && !oldInAux);    let shouldPrintParens = needsParens(node, parent, this._printStack);    if (this.format.retainFunctionParens && node.type === "FunctionExpression" && node.extra && node.extra.parenthesized) {      shouldPrintParens = true;    }    if (shouldPrintParens) this.token("(");    this._printLeadingComments(node);    const loc = isProgram(node) || isFile(node) ? null : node.loc;    this.withSource("start", loc, () => {      printMethod.call(this, node, parent);    });    this._printTrailingComments(node);    if (shouldPrintParens) this.token(")");    this._printStack.pop();    this.format.concise = oldConcise;    this._insideAux = oldInAux;  }  _maybeAddAuxComment(enteredPositionlessNode) {    if (enteredPositionlessNode) this._printAuxBeforeComment();    if (!this._insideAux) this._printAuxAfterComment();  }  _printAuxBeforeComment() {    if (this._printAuxAfterOnNextUserNode) return;    this._printAuxAfterOnNextUserNode = true;    const comment = this.format.auxiliaryCommentBefore;    if (comment) {      this._printComment({        type: "CommentBlock",        value: comment      });    }  }  _printAuxAfterComment() {    if (!this._printAuxAfterOnNextUserNode) return;    this._printAuxAfterOnNextUserNode = false;    const comment = this.format.auxiliaryCommentAfter;    if (comment) {      this._printComment({        type: "CommentBlock",        value: comment      });    }  }  getPossibleRaw(node) {    const extra = node.extra;    if (extra && extra.raw != null && extra.rawValue != null && node.value === extra.rawValue) {      return extra.raw;    }  }  printJoin(nodes, parent, opts = {}) {    if (!(nodes != null && nodes.length)) return;    if (opts.indent) this.indent();    const newlineOpts = {      addNewlines: opts.addNewlines    };    for (let i = 0; i < nodes.length; i++) {      const node = nodes[i];      if (!node) continue;      if (opts.statement) this._printNewline(true, node, parent, newlineOpts);      this.print(node, parent);      if (opts.iterator) {        opts.iterator(node, i);      }      if (opts.separator && i < nodes.length - 1) {        opts.separator.call(this);      }      if (opts.statement) this._printNewline(false, node, parent, newlineOpts);    }    if (opts.indent) this.dedent();  }  printAndIndentOnComments(node, parent) {    const indent = node.leadingComments && node.leadingComments.length > 0;    if (indent) this.indent();    this.print(node, parent);    if (indent) this.dedent();  }  printBlock(parent) {    const node = parent.body;    if (!isEmptyStatement(node)) {      this.space();    }    this.print(node, parent);  }  _printTrailingComments(node) {    this._printComments(this._getComments(false, node));  }  _printLeadingComments(node) {    this._printComments(this._getComments(true, node), true);  }  printInnerComments(node, indent = true) {    var _node$innerComments;    if (!((_node$innerComments = node.innerComments) != null && _node$innerComments.length)) return;    if (indent) this.indent();    this._printComments(node.innerComments);    if (indent) this.dedent();  }  printSequence(nodes, parent, opts = {}) {    opts.statement = true;    return this.printJoin(nodes, parent, opts);  }  printList(items, parent, opts = {}) {    if (opts.separator == null) {      opts.separator = commaSeparator;    }    return this.printJoin(items, parent, opts);  }  _printNewline(leading, node, parent, opts) {    if (this.format.retainLines || this.format.compact) return;    if (this.format.concise) {      this.space();      return;    }    let lines = 0;    if (this._buf.hasContent()) {      if (!leading) lines++;      if (opts.addNewlines) lines += opts.addNewlines(leading, node) || 0;      const needs = leading ? needsWhitespaceBefore : needsWhitespaceAfter;      if (needs(node, parent)) lines++;    }    this.newline(Math.min(2, lines));  }  _getComments(leading, node) {    return node && (leading ? node.leadingComments : node.trailingComments) || [];  }  _printComment(comment, skipNewLines) {    if (!this.format.shouldPrintComment(comment.value)) return;    if (comment.ignore) return;    if (this._printedComments.has(comment)) return;    this._printedComments.add(comment);    const isBlockComment = comment.type === "CommentBlock";    const printNewLines = isBlockComment && !skipNewLines && !this._noLineTerminator;    if (printNewLines && this._buf.hasContent()) this.newline(1);    const lastCharCode = this.getLastChar();    if (lastCharCode !== 91 && lastCharCode !== 123) {      this.space();    }    let val = !isBlockComment && !this._noLineTerminator ? `//${comment.value}\n` : `/*${comment.value}*/`;    if (isBlockComment && this.format.indent.adjustMultilineComment) {      var _comment$loc;      const offset = (_comment$loc = comment.loc) == null ? void 0 : _comment$loc.start.column;      if (offset) {        const newlineRegex = new RegExp("\\n\\s{1," + offset + "}", "g");        val = val.replace(newlineRegex, "\n");      }      const indentSize = Math.max(this._getIndent().length, this.format.retainLines ? 0 : this._buf.getCurrentColumn());      val = val.replace(/\n(?!$)/g, `\n${" ".repeat(indentSize)}`);    }    if (this.endsWith(47)) this._space();    this.withSource("start", comment.loc, () => {      this._append(val);    });    if (printNewLines) this.newline(1);  }  _printComments(comments, inlinePureAnnotation) {    if (!(comments != null && comments.length)) return;    if (inlinePureAnnotation && comments.length === 1 && PURE_ANNOTATION_RE.test(comments[0].value)) {      this._printComment(comments[0], this._buf.hasContent() && !this.endsWith(10));    } else {      for (const comment of comments) {        this._printComment(comment);      }    }  }  printAssertions(node) {    var _node$assertions;    if ((_node$assertions = node.assertions) != null && _node$assertions.length) {      this.space();      this.word("assert");      this.space();      this.token("{");      this.space();      this.printList(node.assertions, node);      this.space();      this.token("}");    }  }}Object.assign(Printer.prototype, generatorFunctions);{  Printer.prototype.Noop = function Noop() {};}var _default = Printer;exports.default = _default;function commaSeparator() {  this.token(",");  this.space();}
 |