Rename all proposal plugins to -proposal- from -transform- (#6570)

This commit is contained in:
Henry Zhu
2017-10-27 15:26:38 -04:00
committed by GitHub
parent a94aa54230
commit c41abd79a1
599 changed files with 372 additions and 372 deletions

View File

@@ -0,0 +1,62 @@
import syntaxFunctionBind from "@babel/plugin-syntax-function-bind";
export default function({ types: t }) {
function getTempId(scope) {
let id = scope.path.getData("functionBind");
if (id) return id;
id = scope.generateDeclaredUidIdentifier("context");
return scope.path.setData("functionBind", id);
}
function getStaticContext(bind, scope) {
const object = bind.object || bind.callee.object;
return scope.isStatic(object) && object;
}
function inferBindContext(bind, scope) {
const staticContext = getStaticContext(bind, scope);
if (staticContext) return t.cloneDeep(staticContext);
const tempId = getTempId(scope);
if (bind.object) {
bind.callee = t.sequenceExpression([
t.assignmentExpression("=", tempId, bind.object),
bind.callee,
]);
} else {
bind.callee.object = t.assignmentExpression(
"=",
tempId,
bind.callee.object,
);
}
return tempId;
}
return {
inherits: syntaxFunctionBind,
visitor: {
CallExpression({ node, scope }) {
const bind = node.callee;
if (!t.isBindExpression(bind)) return;
const context = inferBindContext(bind, scope);
node.callee = t.memberExpression(bind.callee, t.identifier("call"));
node.arguments.unshift(context);
},
BindExpression(path) {
const { node, scope } = path;
const context = inferBindContext(node, scope);
path.replaceWith(
t.callExpression(
t.memberExpression(node.callee, t.identifier("bind")),
[context],
),
);
},
},
};
}