Sha256: fa80ad0408d1ac9e90fd71634bfd94d002e99cdf6ce5eb414a249b91bfdf6e5b
Contents?: true
Size: 1.16 KB
Versions: 3
Compression:
Stored size: 1.16 KB
Contents
"use strict"; exports.__esModule = true; exports.BlockStatement = BlockStatement; exports.SwitchCase = SwitchCase; function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj["default"] = obj; return newObj; } } var _types = require("../../../types"); var t = _interopRequireWildcard(_types); function statementList(key, path) { var paths = path.get(key); for (var i = 0; i < paths.length; i++) { var _path = paths[i]; var func = _path.node; if (!t.isFunctionDeclaration(func)) continue; var declar = t.variableDeclaration("let", [t.variableDeclarator(func.id, t.toExpression(func))]); // hoist it up above everything else declar._blockHoist = 2; // todo: name this func.id = null; _path.replaceWith(declar); } } function BlockStatement(node, parent) { if (t.isFunction(parent) && parent.body === node || t.isExportDeclaration(parent)) { return; } statementList("body", this); } function SwitchCase() { statementList("consequent", this); }
Version data entries
3 entries across 3 versions & 1 rubygems