Amjad Masad 3667527d04 Revert "Remove flow"
This reverts commit 2827ff6b01dcce69e9d3c0402e96b52b3a2a47ee.
2016-03-03 14:49:20 -08:00

47 lines
1.0 KiB
JavaScript

export default function ({ types: t }) {
function hasSpread(node) {
for (let prop of (node.properties: Array<Object>)) {
if (t.isSpreadProperty(prop)) {
return true;
}
}
return false;
}
return {
inherits: require("babel-plugin-syntax-object-rest-spread"),
visitor: {
ObjectExpression(path, file) {
if (!hasSpread(path.node)) return;
let args = [];
let props = [];
function push() {
if (!props.length) return;
args.push(t.objectExpression(props));
props = [];
}
for (let prop of (path.node.properties: Array)) {
if (t.isSpreadProperty(prop)) {
push();
args.push(prop.argument);
} else {
props.push(prop);
}
}
push();
if (!t.isObjectExpression(args[0])) {
args.unshift(t.objectExpression([]));
}
path.replaceWith(t.callExpression(file.addHelper("extends"), args));
}
}
};
}