This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 147
/
esm.js
303 lines (235 loc) · 6.33 KB
/
esm.js
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
/* eslint strict: off, node/no-unsupported-features: ["error", { version: 6 }] */
const JEST_EVAL_RESULT_VARIABLE = "Object.<anonymous>"
const globalThis = (function () {
// Reference `this` before `Function()` to prevent CSP errors for unsafe-eval.
// Fallback to `Function()` when Node is invoked with `--strict`.
return this || Function("return this")()
})()
const {
apply,
defineProperty
} = Reflect
const { freeze } = Object
const { hasOwnProperty } = Object.prototype
const { type, versions } = process
const {
filename,
id,
parent
} = module
const isElectron = has(versions, "electron")
const isElectronRenderer = isElectron && type === "renderer"
let nativeContent = ""
if (typeof id === "string" &&
id.startsWith("internal/")) {
nativeContent = getNativeSource("internal/esm/loader")
}
const Module = require("module")
const { Script } = require("vm")
const {
createCachedData,
runInNewContext,
runInThisContext
} = Script.prototype
const { sep } = require("path")
const { readFileSync } = require("fs")
const esmModule = new Module(id)
esmModule.filename = filename
esmModule.parent = parent
let jestObject
if (typeof jest === "object" && jest !== null &&
global.jest !== jest) {
jestObject = jest
}
function getNativeSource(thePath) {
let result
try {
const { internalBinding } = require("internal/bootstrap/loaders")
const natives = internalBinding("natives")
if (has(natives, thePath)) {
result = natives[thePath]
}
} catch (e) {}
if (typeof result === "string") {
return result
}
return ""
}
function has(object, name) {
return object != null &&
apply(hasOwnProperty, object, [name])
}
function loadESM() {
compiledESM(require, esmModule, jestObject, shared)
return esmModule.exports
}
function makeRequireFunction(mod, options) {
return loadESM()(mod, options)
}
function readFile(filename, options) {
try {
return readFileSync(filename, options)
} catch (e) {}
return null
}
function tryRequire(request) {
try {
return require(request)
} catch (e) {}
}
const jestEnvironmentHooks = { __proto__: null }
function jestTransform(content, filename, { cwd, testEnvironment }) {
if (! has(jestEnvironmentHooks, cwd)) {
jestEnvironmentHooks[cwd] = {
compile: { __proto__: null },
loader: makeRequireFunction(module)
}
}
const Environment = tryRequire(testEnvironment)
if (typeof Environment !== "function") {
return
}
const { loader } = jestEnvironmentHooks[cwd]
const { runScript } = Environment.prototype
const runtimeName = "_"
const { symbol } = shared
const {
CachingCompiler,
moduleInternalCompileSource
} = shared.module
const Entry = loader(symbol.entry)
const Runtime = loader(symbol.runtime)
const compileData = CachingCompiler.compile(content, {
cjsVars: true,
filename,
runtimeName,
sourceType: 3
})
jestEnvironmentHooks[cwd].compile[filename] = compileData
const isESM = compileData.sourceType === 2
const code = moduleInternalCompileSource(compileData, {
cjsVars: true,
runtimeName
})
if (! has(jestEnvironmentHooks[cwd], testEnvironment)) {
jestEnvironmentHooks[testEnvironment] = true
Environment.prototype.runScript = function (...args) {
const scriptResult = Reflect.apply(runScript, this, args)
const wrapper = scriptResult[JEST_EVAL_RESULT_VARIABLE]
scriptResult[JEST_EVAL_RESULT_VARIABLE] = function (...args) {
const [mod] = args
const entry = Entry.get(mod)
entry.compileData = jestEnvironmentHooks[cwd].compile[entry.filename]
entry.runtimeName = runtimeName
entry.type = isESM ? 2 : 1
const runtime = Runtime.enable(entry, {})
let moduleResult = Reflect.apply(wrapper, this, args)
if (isESM) {
// Debuggers may wrap `Module#_compile()` with
// `process.binding("inspector").callAndPauseOnStart()`
// and not forward the return value.
const { _runResult } = runtime
// Eventually, we will call this in the instantiate phase.
_runResult.next()
moduleResult = _runResult.next().value
}
return moduleResult
}
return scriptResult
}
}
return { code }
}
let cachedData
let scriptOptions
let cachePath = ""
let content = ""
if (nativeContent !== "") {
content = nativeContent
scriptOptions = {
__proto__: null,
filename: "esm.js"
}
} else {
cachePath = __dirname + sep + "node_modules" + sep + ".cache" + sep + "esm"
cachedData = readFile(cachePath + sep + ".data.blob")
content = readFile(__dirname + sep + "esm" + sep + "loader.js", "utf8")
if (cachedData === null) {
cachedData = void 0
}
if (content === null) {
content = ""
}
scriptOptions = {
__proto__: null,
cachedData,
filename,
produceCachedData: typeof createCachedData !== "function"
}
}
const script = new Script(
"var __global__ = this;" +
"(function (require, module, __jest__, __shared__) { " +
content +
"\n});",
scriptOptions
)
let compiledESM
if (isElectronRenderer) {
compiledESM = apply(runInThisContext, script, [{
__proto__: null,
filename
}])
} else {
compiledESM = apply(runInNewContext, script, [{
__proto__: null,
global: globalThis
}, {
__proto__: null,
filename
}])
}
// Declare `shared` before assignment to avoid the TDZ.
let shared
shared = loadESM()
if (cachePath !== "") {
const { dir } = shared.package
if (! has(dir, cachePath)) {
dir[cachePath] = {
buffer: cachedData,
compile: {
__proto__: null,
esm: {
changed: false,
circular: 0,
code: null,
filename: null,
firstAwaitOutsideFunction: null,
mtime: -1,
scriptData: cachedData || null,
sourceType: 1,
yieldIndex: -1
}
},
map: { __proto__: null }
}
}
shared.pendingScripts[cachePath] = {
__proto__: null,
esm: script
}
}
defineProperty(makeRequireFunction, shared.symbol.package, {
__proto__: null,
value: true
})
defineProperty(makeRequireFunction, shared.customInspectKey, {
__proto__: null,
value: () => "esm enabled"
})
defineProperty(makeRequireFunction, "process", {
__proto__: null,
value: jestTransform
})
freeze(makeRequireFunction)
module.exports = makeRequireFunction