Blame view

node_modules/babel-helper-call-delegate/lib/index.js 1.92 KB
6a9ffbcc   liuqimichale   地图点击事件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
  "use strict";
  
  exports.__esModule = true;
  
  exports.default = function (path) {
    var scope = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : path.scope;
    var node = path.node;
  
    var container = t.functionExpression(null, [], node.body, node.generator, node.async);
  
    var callee = container;
    var args = [];
  
    (0, _babelHelperHoistVariables2.default)(path, function (id) {
      return scope.push({ id: id });
    });
  
    var state = {
      foundThis: false,
      foundArguments: false
    };
  
    path.traverse(visitor, state);
  
    if (state.foundArguments) {
      callee = t.memberExpression(container, t.identifier("apply"));
      args = [];
  
      if (state.foundThis) {
        args.push(t.thisExpression());
      }
  
      if (state.foundArguments) {
        if (!state.foundThis) args.push(t.nullLiteral());
        args.push(t.identifier("arguments"));
      }
    }
  
    var call = t.callExpression(callee, args);
    if (node.generator) call = t.yieldExpression(call, true);
  
    return t.returnStatement(call);
  };
  
  var _babelHelperHoistVariables = require("babel-helper-hoist-variables");
  
  var _babelHelperHoistVariables2 = _interopRequireDefault(_babelHelperHoistVariables);
  
  var _babelTypes = require("babel-types");
  
  var t = _interopRequireWildcard(_babelTypes);
  
  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; } }
  
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  
  var visitor = {
    enter: function enter(path, state) {
      if (path.isThisExpression()) {
        state.foundThis = true;
      }
  
      if (path.isReferencedIdentifier({ name: "arguments" })) {
        state.foundArguments = true;
      }
    },
    Function: function Function(path) {
      path.skip();
    }
  };
  
  module.exports = exports["default"];