Sha256: cc86f5c0ef47cee7fb1a32a2f874e498d4d362f9b30cf3d284571adf24ddaec1

Contents?: true

Size: 1.13 KB

Versions: 62

Compression:

Stored size: 1.13 KB

Contents

"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});
exports.default = toKeyAlias;

var _generated = require("../validators/generated");

var _cloneNode = _interopRequireDefault(require("../clone/cloneNode"));

var _removePropertiesDeep = _interopRequireDefault(require("../modifications/removePropertiesDeep"));

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

function toKeyAlias(node, key = node.key) {
  let alias;

  if (node.kind === "method") {
    return toKeyAlias.increment() + "";
  } else if ((0, _generated.isIdentifier)(key)) {
    alias = key.name;
  } else if ((0, _generated.isStringLiteral)(key)) {
    alias = JSON.stringify(key.value);
  } else {
    alias = JSON.stringify((0, _removePropertiesDeep.default)((0, _cloneNode.default)(key)));
  }

  if (node.computed) {
    alias = `[${alias}]`;
  }

  if (node.static) {
    alias = `static:${alias}`;
  }

  return alias;
}

toKeyAlias.uid = 0;

toKeyAlias.increment = function () {
  if (toKeyAlias.uid >= Number.MAX_SAFE_INTEGER) {
    return toKeyAlias.uid = 0;
  } else {
    return toKeyAlias.uid++;
  }
};

Version data entries

62 entries across 61 versions & 12 rubygems

Version Path
trusty-cms-4.3.3 node_modules/@babel/types/lib/converters/toKeyAlias.js
trusty-cms-4.3.2 node_modules/@babel/types/lib/converters/toKeyAlias.js
trusty-cms-4.3.1 node_modules/@babel/types/lib/converters/toKeyAlias.js
trusty-cms-4.3 node_modules/@babel/types/lib/converters/toKeyAlias.js
trusty-cms-4.2.3 node_modules/@babel/types/lib/converters/toKeyAlias.js
tang-0.2.1 spec/tang_app/node_modules/@babel/types/lib/converters/toKeyAlias.js
trusty-cms-4.2.2 node_modules/@babel/types/lib/converters/toKeyAlias.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/@babel/types/lib/converters/toKeyAlias.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/@babel/types/lib/converters/toKeyAlias.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/@babel/types/lib/converters/toKeyAlias.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/@babel/types/lib/converters/toKeyAlias.js
trusty-cms-4.2.1 node_modules/@babel/types/lib/converters/toKeyAlias.js
trusty-cms-4.2 node_modules/@babel/types/lib/converters/toKeyAlias.js
trusty-cms-4.1.9 node_modules/@babel/types/lib/converters/toKeyAlias.js
trusty-cms-4.1.8 node_modules/@babel/types/lib/converters/toKeyAlias.js
tang-0.2.0 spec/tang_app/node_modules/@babel/types/lib/converters/toKeyAlias.js
trusty-cms-4.1.7 node_modules/@babel/types/lib/converters/toKeyAlias.js
tang-0.1.0 spec/tang_app/node_modules/@babel/types/lib/converters/toKeyAlias.js
tang-0.0.9 spec/tang_app/node_modules/@babel/types/lib/converters/toKeyAlias.js
trusty-cms-4.1.6 node_modules/@babel/types/lib/converters/toKeyAlias.js