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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
function _helperPluginUtils() {
const data = require("@babel/helper-plugin-utils");
_helperPluginUtils = function _helperPluginUtils() {
return data;
};
return data;
}
function _helperModuleTransforms() {
const data = require("@babel/helper-module-transforms");
_helperModuleTransforms = function _helperModuleTransforms() {
return data;
};
return data;
}
function _core() {
const data = require("@babel/core");
_core = function _core() {
return data;
};
return data;
}
const buildWrapper = (0, _core().template)(`
define(MODULE_NAME, AMD_ARGUMENTS, function(IMPORT_NAMES) {
})
`);
var _default = (0, _helperPluginUtils().declare)((api, options) => {
api.assertVersion(7);
const loose = options.loose,
allowTopLevelThis = options.allowTopLevelThis,
strict = options.strict,
strictMode = options.strictMode,
noInterop = options.noInterop;
return {
visitor: {
Program: {
exit(path) {
if (!(0, _helperModuleTransforms().isModule)(path)) return;
let moduleName = this.getModuleName();
if (moduleName) moduleName = _core().types.stringLiteral(moduleName);
const _rewriteModuleStateme = (0, _helperModuleTransforms().rewriteModuleStatementsAndPrepareHeader)(path, {
loose,
strict,
strictMode,
allowTopLevelThis,
noInterop
}),
meta = _rewriteModuleStateme.meta,
headers = _rewriteModuleStateme.headers;
const amdArgs = [];
const importNames = [];
if ((0, _helperModuleTransforms().hasExports)(meta)) {
amdArgs.push(_core().types.stringLiteral("exports"));
importNames.push(_core().types.identifier(meta.exportName));
}
for (var _iterator = meta.source, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) {
var _ref;
if (_isArray) {
if (_i >= _iterator.length) break;
_ref = _iterator[_i++];
} else {
_i = _iterator.next();
if (_i.done) break;
_ref = _i.value;
}
const _ref2 = _ref,
source = _ref2[0],
metadata = _ref2[1];
amdArgs.push(_core().types.stringLiteral(source));
importNames.push(_core().types.identifier(metadata.name));
if (!(0, _helperModuleTransforms().isSideEffectImport)(metadata)) {
const interop = (0, _helperModuleTransforms().wrapInterop)(path, _core().types.identifier(metadata.name), metadata.interop);
if (interop) {
const header = _core().types.expressionStatement(_core().types.assignmentExpression("=", _core().types.identifier(metadata.name), interop));
header.loc = metadata.loc;
headers.push(header);
}
}
headers.push(...(0, _helperModuleTransforms().buildNamespaceInitStatements)(meta, metadata, loose));
}
(0, _helperModuleTransforms().ensureStatementsHoisted)(headers);
path.unshiftContainer("body", headers);
const _path$node = path.node,
body = _path$node.body,
directives = _path$node.directives;
path.node.directives = [];
path.node.body = [];
const amdWrapper = path.pushContainer("body", [buildWrapper({
MODULE_NAME: moduleName,
AMD_ARGUMENTS: _core().types.arrayExpression(amdArgs),
IMPORT_NAMES: importNames
})])[0];
const amdFactory = amdWrapper.get("expression.arguments").filter(arg => arg.isFunctionExpression())[0].get("body");
amdFactory.pushContainer("directives", directives);
amdFactory.pushContainer("body", body);
}
}
}
};
});
exports.default = _default;
|