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/jsx.js

    rd565449 r0c6b92a  
    2020exports.JSXText = JSXText;
    2121function JSXAttribute(node) {
    22   this.print(node.name, node);
     22  this.print(node.name);
    2323  if (node.value) {
    2424    this.tokenChar(61);
    25     this.print(node.value, node);
     25    this.print(node.value);
    2626  }
    2727}
     
    3030}
    3131function JSXNamespacedName(node) {
    32   this.print(node.namespace, node);
     32  this.print(node.namespace);
    3333  this.tokenChar(58);
    34   this.print(node.name, node);
     34  this.print(node.name);
    3535}
    3636function JSXMemberExpression(node) {
    37   this.print(node.object, node);
     37  this.print(node.object);
    3838  this.tokenChar(46);
    39   this.print(node.property, node);
     39  this.print(node.property);
    4040}
    4141function JSXSpreadAttribute(node) {
    4242  this.tokenChar(123);
    4343  this.token("...");
    44   this.print(node.argument, node);
    45   this.tokenChar(125);
     44  this.print(node.argument);
     45  this.rightBrace(node);
    4646}
    4747function JSXExpressionContainer(node) {
    4848  this.tokenChar(123);
    49   this.print(node.expression, node);
    50   this.tokenChar(125);
     49  this.print(node.expression);
     50  this.rightBrace(node);
    5151}
    5252function JSXSpreadChild(node) {
    5353  this.tokenChar(123);
    5454  this.token("...");
    55   this.print(node.expression, node);
    56   this.tokenChar(125);
     55  this.print(node.expression);
     56  this.rightBrace(node);
    5757}
    5858function JSXText(node) {
     
    6666function JSXElement(node) {
    6767  const open = node.openingElement;
    68   this.print(open, node);
     68  this.print(open);
    6969  if (open.selfClosing) return;
    7070  this.indent();
    7171  for (const child of node.children) {
    72     this.print(child, node);
     72    this.print(child);
    7373  }
    7474  this.dedent();
    75   this.print(node.closingElement, node);
     75  this.print(node.closingElement);
    7676}
    7777function spaceSeparator() {
     
    8080function JSXOpeningElement(node) {
    8181  this.tokenChar(60);
    82   this.print(node.name, node);
    83   this.print(node.typeParameters, node);
     82  this.print(node.name);
     83  this.print(node.typeParameters);
    8484  if (node.attributes.length > 0) {
    8585    this.space();
    86     this.printJoin(node.attributes, node, {
     86    this.printJoin(node.attributes, {
    8787      separator: spaceSeparator
    8888    });
     
    9090  if (node.selfClosing) {
    9191    this.space();
    92     this.token("/>");
    93   } else {
    94     this.tokenChar(62);
     92    this.tokenChar(47);
    9593  }
     94  this.tokenChar(62);
    9695}
    9796function JSXClosingElement(node) {
    98   this.token("</");
    99   this.print(node.name, node);
     97  this.tokenChar(60);
     98  this.tokenChar(47);
     99  this.print(node.name);
    100100  this.tokenChar(62);
    101101}
     
    104104}
    105105function JSXFragment(node) {
    106   this.print(node.openingFragment, node);
     106  this.print(node.openingFragment);
    107107  this.indent();
    108108  for (const child of node.children) {
    109     this.print(child, node);
     109    this.print(child);
    110110  }
    111111  this.dedent();
    112   this.print(node.closingFragment, node);
     112  this.print(node.closingFragment);
    113113}
    114114function JSXOpeningFragment() {
Note: See TracChangeset for help on using the changeset viewer.