UNPKG

babel-core

Version:

Turn ES6 code into readable vanilla ES5 with source maps

232 lines (171 loc) 7.72 kB
"use strict"; var _interopRequireWildcard = function (obj) { return obj && obj.__esModule ? obj : { "default": obj }; }; var _interopRequire = function (obj) { return obj && obj.__esModule ? obj["default"] : obj; }; var _inherits = function (subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) subClass.__proto__ = superClass; }; var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }; var DefaultFormatter = _interopRequire(require("./_default")); var AMDFormatter = _interopRequire(require("./amd")); var util = _interopRequireWildcard(require("../../util")); var last = _interopRequire(require("lodash/array/last")); var each = _interopRequire(require("lodash/collection/each")); var map = _interopRequire(require("lodash/collection/map")); var t = _interopRequireWildcard(require("../../types")); var canHoist = function canHoist(node, file) { return node._blockHoist && !file.transformers.runtime.canTransform(); }; var hoistVariablesVisitor = { enter: function enter(node, parent, scope, hoistDeclarators) { if (t.isFunction(node)) { // nothing inside is accessible return this.skip(); } if (t.isVariableDeclaration(node)) { if (node.kind !== "var" && !t.isProgram(parent)) { // let, const // can't be accessed return; } // ignore block hoisted nodes as these can be left in if (canHoist(node, scope.file)) return; var nodes = []; for (var i = 0; i < node.declarations.length; i++) { var declar = node.declarations[i]; hoistDeclarators.push(t.variableDeclarator(declar.id)); if (declar.init) { // no initializer so we can just hoist it as-is var assign = t.expressionStatement(t.assignmentExpression("=", declar.id, declar.init)); nodes.push(assign); } } // for (var i in test) // for (var i = 0;;) if (t.isFor(parent)) { if (parent.left === node) { return node.declarations[0].id; } if (parent.init === node) { return nodes; } } return nodes; } } }; var hoistFunctionsVisitor = { enter: function enter(node, parent, scope, handlerBody) { if (t.isFunction(node)) this.skip(); if (t.isFunctionDeclaration(node) || canHoist(node, scope.file)) { handlerBody.push(node); this.remove(); } } }; var runnerSettersVisitor = { enter: function enter(node, parent, scope, state) { if (node._importSource === state.source) { if (t.isVariableDeclaration(node)) { each(node.declarations, function (declar) { state.hoistDeclarators.push(t.variableDeclarator(declar.id)); state.nodes.push(t.expressionStatement(t.assignmentExpression("=", declar.id, declar.init))); }); } else { state.nodes.push(node); } this.remove(); } } }; var SystemFormatter = (function (_AMDFormatter) { function SystemFormatter(file) { _classCallCheck(this, SystemFormatter); this.exportIdentifier = file.scope.generateUidIdentifier("export"); this.noInteropRequireExport = true; this.noInteropRequireImport = true; DefaultFormatter.apply(this, arguments); } _inherits(SystemFormatter, _AMDFormatter); SystemFormatter.prototype._addImportSource = function _addImportSource(node, exportNode) { if (node) node._importSource = exportNode.source && exportNode.source.value; return node; }; SystemFormatter.prototype.buildExportsWildcard = function buildExportsWildcard(objectIdentifier, node) { var leftIdentifier = this.scope.generateUidIdentifier("key"); var valIdentifier = t.memberExpression(objectIdentifier, leftIdentifier, true); var left = t.variableDeclaration("var", [t.variableDeclarator(leftIdentifier)]); var right = objectIdentifier; var block = t.blockStatement([t.expressionStatement(this.buildExportCall(leftIdentifier, valIdentifier))]); return this._addImportSource(t.forInStatement(left, right, block), node); }; SystemFormatter.prototype.buildExportsAssignment = function buildExportsAssignment(id, init, node) { var call = this.buildExportCall(t.literal(id.name), init, true); return this._addImportSource(call, node); }; SystemFormatter.prototype.buildExportsFromAssignment = function buildExportsFromAssignment() { return this.buildExportsAssignment.apply(this, arguments); }; SystemFormatter.prototype.remapExportAssignment = function remapExportAssignment(node, exported) { var assign = node; for (var i = 0; i < exported.length; i++) { assign = this.buildExportCall(t.literal(exported[i].name), assign); } return assign; }; SystemFormatter.prototype.buildExportCall = function buildExportCall(id, init, isStatement) { var call = t.callExpression(this.exportIdentifier, [id, init]); if (isStatement) { return t.expressionStatement(call); } else { return call; } }; SystemFormatter.prototype.importSpecifier = function importSpecifier(specifier, node, nodes) { AMDFormatter.prototype.importSpecifier.apply(this, arguments); for (var name in this.internalRemap) { nodes.push(t.variableDeclaration("var", [t.variableDeclarator(t.identifier(name), this.internalRemap[name])])); } this.internalRemap = {}; this._addImportSource(last(nodes), node); }; SystemFormatter.prototype.buildRunnerSetters = function buildRunnerSetters(block, hoistDeclarators) { var scope = this.file.scope; return t.arrayExpression(map(this.ids, function (uid, source) { var state = { hoistDeclarators: hoistDeclarators, source: source, nodes: [] }; scope.traverse(block, runnerSettersVisitor, state); return t.functionExpression(null, [uid], t.blockStatement(state.nodes)); })); }; SystemFormatter.prototype.transform = function transform(program) { DefaultFormatter.prototype.transform.apply(this, arguments); var hoistDeclarators = []; var moduleName = this.getModuleName(); var moduleNameLiteral = t.literal(moduleName); var block = t.blockStatement(program.body); var runner = util.template("system", { MODULE_DEPENDENCIES: t.arrayExpression(this.buildDependencyLiterals()), EXPORT_IDENTIFIER: this.exportIdentifier, MODULE_NAME: moduleNameLiteral, SETTERS: this.buildRunnerSetters(block, hoistDeclarators), EXECUTE: t.functionExpression(null, [], block) }, true); var handlerBody = runner.expression.arguments[2].body.body; if (!moduleName) runner.expression.arguments.shift(); var returnStatement = handlerBody.pop(); // hoist up all variable declarations this.file.scope.traverse(block, hoistVariablesVisitor, hoistDeclarators); if (hoistDeclarators.length) { var hoistDeclar = t.variableDeclaration("var", hoistDeclarators); hoistDeclar._blockHoist = true; handlerBody.unshift(hoistDeclar); } // hoist up function declarations for circular references this.file.scope.traverse(block, hoistFunctionsVisitor, handlerBody); handlerBody.push(returnStatement); program.body = [runner]; }; return SystemFormatter; })(AMDFormatter); module.exports = SystemFormatter;