Ignore:
Timestamp:
12/12/24 17:06:06 (5 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
d565449
Message:

Pred finalna verzija

File:
1 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/@babel/generator/lib/generators/base.js

    rd565449 r0c6b92a  
    1313function File(node) {
    1414  if (node.program) {
    15     this.print(node.program.interpreter, node);
     15    this.print(node.program.interpreter);
    1616  }
    17   this.print(node.program, node);
     17  this.print(node.program);
    1818}
    1919function Program(node) {
     
    2525    var _node$directives$trai;
    2626    const newline = node.body.length ? 2 : 1;
    27     this.printSequence(node.directives, node, {
     27    this.printSequence(node.directives, {
    2828      trailingCommentsLineOffset: newline
    2929    });
     
    3232    }
    3333  }
    34   this.printSequence(node.body, node);
     34  this.printSequence(node.body);
    3535}
    3636function BlockStatement(node) {
    3737  var _node$directives2;
    3838  this.tokenChar(123);
     39  const exit = this.enterDelimited();
    3940  const directivesLen = (_node$directives2 = node.directives) == null ? void 0 : _node$directives2.length;
    4041  if (directivesLen) {
    4142    var _node$directives$trai2;
    4243    const newline = node.body.length ? 2 : 1;
    43     this.printSequence(node.directives, node, {
     44    this.printSequence(node.directives, {
    4445      indent: true,
    4546      trailingCommentsLineOffset: newline
     
    4950    }
    5051  }
    51   const exit = this.enterForStatementInit(false);
    52   this.printSequence(node.body, node, {
     52  this.printSequence(node.body, {
    5353    indent: true
    5454  });
     
    5757}
    5858function Directive(node) {
    59   this.print(node.value, node);
     59  this.print(node.value);
    6060  this.semicolon();
    6161}
Note: See TracChangeset for help on using the changeset viewer.