visit.js
10.6 KB
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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
/**
* Copyright (c) 2014, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* https://raw.github.com/facebook/regenerator/master/LICENSE file. An
* additional grant of patent rights can be found in the PATENTS file in
* the same directory.
*/
var assert = require("assert");
var fs = require("fs");
var recast = require("recast");
var types = recast.types;
var n = types.namedTypes;
var b = types.builders;
var isArray = types.builtInTypes.array;
var isObject = types.builtInTypes.object;
var NodePath = types.NodePath;
var hoist = require("./hoist").hoist;
var Emitter = require("./emit").Emitter;
var util = require("./util");
var runtimeProperty = util.runtimeProperty;
var getMarkInfo = require("private").makeAccessor();
exports.transform = function transform(node, options) {
options = options || {};
var path = node instanceof NodePath ? node : new NodePath(node);
visitor.visit(path, options);
node = path.value;
if (options.includeRuntime === true ||
(options.includeRuntime === 'if used' && visitor.wasChangeReported())) {
injectRuntime(n.File.check(node) ? node.program : node);
}
options.madeChanges = visitor.wasChangeReported();
return node;
};
function injectRuntime(program) {
n.Program.assert(program);
// Include the runtime by modifying the AST rather than by concatenating
// strings. This technique will allow for more accurate source mapping.
var runtimePath = require("..").runtime.path;
var runtime = fs.readFileSync(runtimePath, "utf8");
var runtimeBody = recast.parse(runtime, {
sourceFileName: runtimePath
}).program.body;
var body = program.body;
body.unshift.apply(body, runtimeBody);
}
var visitor = types.PathVisitor.fromMethodsObject({
reset: function(node, options) {
this.options = options;
},
visitFunction: function(path) {
// Calling this.traverse(path) first makes for a post-order traversal.
this.traverse(path);
var node = path.value;
var shouldTransformAsync = node.async && !this.options.disableAsync;
if (!node.generator && !shouldTransformAsync) {
return;
}
this.reportChanged();
if (node.expression) {
// Transform expression lambdas into normal functions.
node.expression = false;
node.body = b.blockStatement([
b.returnStatement(node.body)
]);
}
if (shouldTransformAsync) {
awaitVisitor.visit(path.get("body"));
}
var outerBody = [];
var innerBody = [];
var bodyPath = path.get("body", "body");
bodyPath.each(function(childPath) {
var node = childPath.value;
if (node && node._blockHoist != null) {
outerBody.push(node);
} else {
innerBody.push(node);
}
});
if (outerBody.length > 0) {
// Only replace the inner body if we actually hoisted any statements
// to the outer body.
bodyPath.replace(innerBody);
}
var outerFnExpr = getOuterFnExpr(path);
// Note that getOuterFnExpr has the side-effect of ensuring that the
// function has a name (so node.id will always be an Identifier), even
// if a temporary name has to be synthesized.
n.Identifier.assert(node.id);
var innerFnId = b.identifier(node.id.name + "$");
var contextId = path.scope.declareTemporary("context$");
var argsId = path.scope.declareTemporary("args$");
// Turn all declarations into vars, and replace the original
// declarations with equivalent assignment expressions.
var vars = hoist(path);
var didRenameArguments = renameArguments(path, argsId);
if (didRenameArguments) {
vars = vars || b.variableDeclaration("var", []);
vars.declarations.push(b.variableDeclarator(
argsId, b.identifier("arguments")
));
}
var emitter = new Emitter(contextId);
emitter.explode(path.get("body"));
if (vars && vars.declarations.length > 0) {
outerBody.push(vars);
}
var wrapArgs = [
emitter.getContextFunction(innerFnId),
// Async functions that are not generators don't care about the
// outer function because they don't need it to be marked and don't
// inherit from its .prototype.
node.generator ? outerFnExpr : b.literal(null),
b.thisExpression()
];
var tryLocsList = emitter.getTryLocsList();
if (tryLocsList) {
wrapArgs.push(tryLocsList);
}
var wrapCall = b.callExpression(
runtimeProperty(shouldTransformAsync ? "async" : "wrap"),
wrapArgs
);
outerBody.push(b.returnStatement(wrapCall));
node.body = b.blockStatement(outerBody);
var wasGeneratorFunction = node.generator;
if (wasGeneratorFunction) {
node.generator = false;
}
if (shouldTransformAsync) {
node.async = false;
}
if (wasGeneratorFunction &&
n.Expression.check(node)) {
return b.callExpression(runtimeProperty("mark"), [node]);
}
},
visitForOfStatement: function(path) {
this.traverse(path);
var node = path.value;
var tempIterId = path.scope.declareTemporary("t$");
var tempIterDecl = b.variableDeclarator(
tempIterId,
b.callExpression(
runtimeProperty("values"),
[node.right]
)
);
var tempInfoId = path.scope.declareTemporary("t$");
var tempInfoDecl = b.variableDeclarator(tempInfoId, null);
var init = node.left;
var loopId;
if (n.VariableDeclaration.check(init)) {
loopId = init.declarations[0].id;
init.declarations.push(tempIterDecl, tempInfoDecl);
} else {
loopId = init;
init = b.variableDeclaration("var", [
tempIterDecl,
tempInfoDecl
]);
}
n.Identifier.assert(loopId);
var loopIdAssignExprStmt = b.expressionStatement(
b.assignmentExpression(
"=",
loopId,
b.memberExpression(
tempInfoId,
b.identifier("value"),
false
)
)
);
if (n.BlockStatement.check(node.body)) {
node.body.body.unshift(loopIdAssignExprStmt);
} else {
node.body = b.blockStatement([
loopIdAssignExprStmt,
node.body
]);
}
return b.forStatement(
init,
b.unaryExpression(
"!",
b.memberExpression(
b.assignmentExpression(
"=",
tempInfoId,
b.callExpression(
b.memberExpression(
tempIterId,
b.identifier("next"),
false
),
[]
)
),
b.identifier("done"),
false
)
),
null,
node.body
);
}
});
// Given a NodePath for a Function, return an Expression node that can be
// used to refer reliably to the function object from inside the function.
// This expression is essentially a replacement for arguments.callee, with
// the key advantage that it works in strict mode.
function getOuterFnExpr(funPath) {
var node = funPath.value;
n.Function.assert(node);
if (node.generator && // Non-generator functions don't need to be marked.
n.FunctionDeclaration.check(node)) {
var pp = funPath.parent;
while (pp && !(n.BlockStatement.check(pp.value) ||
n.Program.check(pp.value))) {
pp = pp.parent;
}
if (!pp) {
return node.id;
}
var markDecl = getRuntimeMarkDecl(pp);
var markedArray = markDecl.declarations[0].id;
var funDeclIdArray = markDecl.declarations[0].init.callee.object;
n.ArrayExpression.assert(funDeclIdArray);
var index = funDeclIdArray.elements.length;
funDeclIdArray.elements.push(node.id);
return b.memberExpression(
markedArray,
b.literal(index),
true
);
}
return node.id || (
node.id = funPath.scope.parent.declareTemporary("callee$")
);
}
function getRuntimeMarkDecl(blockPath) {
assert.ok(blockPath instanceof NodePath);
var block = blockPath.node;
isArray.assert(block.body);
var info = getMarkInfo(block);
if (info.decl) {
return info.decl;
}
info.decl = b.variableDeclaration("var", [
b.variableDeclarator(
blockPath.scope.declareTemporary("marked"),
b.callExpression(
b.memberExpression(
b.arrayExpression([]),
b.identifier("map"),
false
),
[runtimeProperty("mark")]
)
)
]);
for (var i = 0; i < block.body.length; ++i) {
if (!shouldNotHoistAbove(blockPath.get("body", i))) {
break;
}
}
blockPath.get("body").insertAt(i, info.decl);
return info.decl;
}
function shouldNotHoistAbove(stmtPath) {
var value = stmtPath.value;
n.Statement.assert(value);
// If the first statement is a "use strict" declaration, make sure to
// insert hoisted declarations afterwards.
return n.ExpressionStatement.check(value) &&
n.Literal.check(value.expression) &&
value.expression.value === "use strict";
}
function renameArguments(funcPath, argsId) {
assert.ok(funcPath instanceof types.NodePath);
var func = funcPath.value;
var didRenameArguments = false;
recast.visit(funcPath, {
visitFunction: function(path) {
if (path.value === func) {
this.traverse(path);
} else {
return false;
}
},
visitIdentifier: function(path) {
if (path.value.name === "arguments" &&
util.isReference(path)) {
path.replace(argsId);
didRenameArguments = true;
return false;
}
this.traverse(path);
}
});
// If the traversal replaced any arguments references, then we need to
// alias the outer function's arguments binding (be it the implicit
// arguments object or some other parameter or variable) to the variable
// named by argsId.
return didRenameArguments;
}
var awaitVisitor = types.PathVisitor.fromMethodsObject({
visitFunction: function(path) {
return false; // Don't descend into nested function scopes.
},
visitAwaitExpression: function(path) {
// Convert await and await* expressions to yield expressions.
var argument = path.value.argument;
// If the parser supports await* syntax using a boolean .all property
// (#171), desugar that syntax to yield Promise.all(argument).
if (path.value.all) {
argument = b.callExpression(
b.memberExpression(
b.identifier("Promise"),
b.identifier("all"),
false
),
[argument]
);
}
// Transforming `await x` to `yield regeneratorRuntime.awrap(x)`
// causes the argument to be wrapped in such a way that the runtime
// can distinguish between awaited and merely yielded values.
return b.yieldExpression(
b.callExpression(
runtimeProperty("awrap"),
[argument]
),
false
);
}
});