in packages/transform/src/emit.js [218:228]
Ep.getContextFunction = function(id) {
const t = util.getTypes();
return t.functionExpression(
id || null/*Anonymous*/,
[this.getContextId()],
t.blockStatement([this.getDispatchLoop()]),
false, // Not a generator anymore!
false // Nor an expression.
);
};