UNPKG

babel-core

Version:

Turn ES6 code into readable vanilla ES5 with source maps

110 lines (82 loc) 2.85 kB
"use strict"; var _interopRequireWildcard = function (obj) { return obj && obj.__esModule ? obj : { "default": obj }; }; exports.check = check; var util = _interopRequireWildcard(require("../../../util")); var t = _interopRequireWildcard(require("../../../types")); function check(node) { return t.isFunction(node) && hasDefaults(node); } var hasDefaults = function hasDefaults(node) { for (var i = 0; i < node.params.length; i++) { if (!t.isIdentifier(node.params[i])) return true; } return false; }; var iifeVisitor = { enter: function enter(node, parent, scope, state) { if (!this.isReferencedIdentifier()) return; if (!state.scope.hasOwnBinding(node.name)) return; if (state.scope.bindingIdentifierEquals(node.name, node)) return; state.iife = true; this.stop(); } }; exports.Function = function (node, parent, scope, file) { if (!hasDefaults(node)) return; t.ensureBlock(node); var body = []; var argsIdentifier = t.identifier("arguments"); argsIdentifier._ignoreAliasFunctions = true; var lastNonDefaultParam = 0; var state = { iife: false, scope: scope }; var pushDefNode = function pushDefNode(left, right, i) { var defNode = util.template("default-parameter", { VARIABLE_NAME: left, DEFAULT_VALUE: right, ARGUMENT_KEY: t.literal(i), ARGUMENTS: argsIdentifier }, true); file.checkNode(defNode); defNode._blockHoist = node.params.length - i; body.push(defNode); }; for (var i = 0; i < node.params.length; i++) { var param = node.params[i]; if (!t.isAssignmentPattern(param)) { if (!t.isRestElement(param)) { lastNonDefaultParam = i + 1; } if (!t.isIdentifier(param)) { scope.traverse(param, iifeVisitor, state); } if (file.transformers["es6.blockScopingTDZ"].canRun() && t.isIdentifier(param)) { pushDefNode(param, t.identifier("undefined"), i); } continue; } var left = param.left; var right = param.right; var placeholder = scope.generateUidIdentifier("x"); placeholder._isDefaultPlaceholder = true; node.params[i] = placeholder; if (!state.iife) { if (t.isIdentifier(right) && scope.hasOwnBinding(right.name)) { state.iife = true; } else { scope.traverse(right, iifeVisitor, state); } } pushDefNode(left, right, i); } // we need to cut off all trailing default parameters node.params = node.params.slice(0, lastNonDefaultParam); if (state.iife) { var container = t.functionExpression(null, [], node.body, node.generator); container._aliasFunction = true; body.push(t.returnStatement(t.callExpression(container, []))); node.body = t.blockStatement(body); } else { node.body.body = body.concat(node.body.body); } }; exports.__esModule = true;