Sha256: 3d2bc8ddc1cbd244e85e0dea88fd923644f3cbe0fe9050565f42ddf747413851

Contents?: true

Size: 1.83 KB

Versions: 21

Compression:

Stored size: 1.83 KB

Contents

"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});
exports.default = void 0;
var _helperPluginUtils = require("@babel/helper-plugin-utils");
var _core = require("@babel/core");
var _default = exports.default = (0, _helperPluginUtils.declare)((api, {
  loose = false
}) => {
  var _api$assumption;
  api.assertVersion("^7.0.0-0 || >8.0.0-alpha <8.0.0-beta");
  const noDocumentAll = (_api$assumption = api.assumption("noDocumentAll")) != null ? _api$assumption : loose;
  return {
    name: "transform-nullish-coalescing-operator",
    inherits: api.version[0] === "8" ? undefined : require("@babel/plugin-syntax-nullish-coalescing-operator").default,
    visitor: {
      LogicalExpression(path) {
        const {
          node,
          scope
        } = path;
        if (node.operator !== "??") {
          return;
        }
        let ref;
        let assignment;
        if (scope.isStatic(node.left)) {
          ref = node.left;
          assignment = _core.types.cloneNode(node.left);
        } else if (scope.path.isPattern()) {
          path.replaceWith(_core.template.statement.ast`(() => ${path.node})()`);
          return;
        } else {
          ref = scope.generateUidIdentifierBasedOnNode(node.left);
          scope.push({
            id: _core.types.cloneNode(ref)
          });
          assignment = _core.types.assignmentExpression("=", ref, node.left);
        }
        path.replaceWith(_core.types.conditionalExpression(noDocumentAll ? _core.types.binaryExpression("!=", assignment, _core.types.nullLiteral()) : _core.types.logicalExpression("&&", _core.types.binaryExpression("!==", assignment, _core.types.nullLiteral()), _core.types.binaryExpression("!==", _core.types.cloneNode(ref), scope.buildUndefinedNode())), _core.types.cloneNode(ref), node.right));
      }
    }
  };
});

//# sourceMappingURL=index.js.map

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
immosquare-cleaner-0.1.60 node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js
immosquare-cleaner-0.1.59 node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js
immosquare-cleaner-0.1.58 node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js
immosquare-cleaner-0.1.57 node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js
immosquare-cleaner-0.1.56 node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js
immosquare-cleaner-0.1.55 node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js
immosquare-cleaner-0.1.54 node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js
immosquare-cleaner-0.1.53 node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js
immosquare-cleaner-0.1.52 node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js
immosquare-cleaner-0.1.51 node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js
immosquare-cleaner-0.1.50 node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js
immosquare-cleaner-0.1.49 node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js
immosquare-cleaner-0.1.48 node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js
immosquare-cleaner-0.1.47 node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js
immosquare-cleaner-0.1.46 node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js
immosquare-cleaner-0.1.45 node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js
immosquare-cleaner-0.1.44 node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js
immosquare-cleaner-0.1.43 node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js
immosquare-cleaner-0.1.42 node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js
immosquare-cleaner-0.1.41 node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js