* Spec compatibility for template literals. * Update preset-es2015 `spec` expected case. * Prevent array mutability by replacing `shift`. * Fix condition for single item. * Group concats to ensure toPrimitive sequence. * Update function test case. * Add semi for function test case. * Simplify concat call expressions creating. * Fix some cases with multiple idengifiers. * Add test case with different literals. * Add test case for `Symbol()` and toPrimitive order * Add actual literal case. * Add minNodeVersion to template literals order. * Flip the logical expression. * Update README for template literals spec option. * docs [skip ci]
99 lines
2.6 KiB
JavaScript
99 lines
2.6 KiB
JavaScript
export default function ({ types: t }) {
|
|
|
|
function buildConcatCallExressions(items) {
|
|
let avail = true;
|
|
return items.reduce(function(left, right) {
|
|
let canBeInserted = t.isLiteral(right);
|
|
|
|
if (!canBeInserted && avail) {
|
|
canBeInserted = true;
|
|
avail = false;
|
|
}
|
|
if (canBeInserted && t.isCallExpression(left)) {
|
|
left.arguments.push(right);
|
|
return left;
|
|
}
|
|
return t.callExpression(
|
|
t.memberExpression(left, t.identifier("concat")),
|
|
[right]
|
|
);
|
|
});
|
|
}
|
|
|
|
return {
|
|
visitor: {
|
|
TaggedTemplateExpression(path, state) {
|
|
|
|
const { node } = path;
|
|
const { quasi } = node;
|
|
|
|
const strings = [];
|
|
const raws = [];
|
|
|
|
for (const elem of (quasi.quasis: Array)) {
|
|
const { raw, cooked } = elem.value;
|
|
const value = cooked == null
|
|
? path.scope.buildUndefinedNode()
|
|
: t.stringLiteral(cooked);
|
|
|
|
strings.push(value);
|
|
raws.push(t.stringLiteral(raw));
|
|
}
|
|
|
|
let templateName = "taggedTemplateLiteral";
|
|
if (state.opts.loose) templateName += "Loose";
|
|
|
|
const templateObject = state.file.addTemplateObject(
|
|
templateName,
|
|
t.arrayExpression(strings),
|
|
t.arrayExpression(raws)
|
|
);
|
|
|
|
const args = [templateObject].concat(quasi.expressions);
|
|
|
|
path.replaceWith(t.callExpression(node.tag, args));
|
|
},
|
|
|
|
TemplateLiteral(path, state) {
|
|
const nodes = [];
|
|
const expressions = path.get("expressions");
|
|
|
|
let index = 0;
|
|
for (const elem of (path.node.quasis: Array)) {
|
|
if (elem.value.cooked) {
|
|
nodes.push(t.stringLiteral(elem.value.cooked));
|
|
}
|
|
|
|
if (index < expressions.length) {
|
|
const expr = expressions[index++];
|
|
const node = expr.node;
|
|
if (!t.isStringLiteral(node, { value: "" })) {
|
|
nodes.push(node);
|
|
}
|
|
}
|
|
}
|
|
|
|
// since `+` is left-to-right associative
|
|
// ensure the first node is a string if first/second isn't
|
|
const considerSecondNode = state.opts.spec || !t.isStringLiteral(nodes[1]);
|
|
if (!t.isStringLiteral(nodes[0]) && considerSecondNode) {
|
|
nodes.unshift(t.stringLiteral(""));
|
|
}
|
|
let root = nodes[0];
|
|
|
|
if (state.opts.spec) {
|
|
if (nodes.length > 1) {
|
|
root = buildConcatCallExressions(nodes);
|
|
}
|
|
} else {
|
|
for (let i = 1; i < nodes.length; i++) {
|
|
root = t.binaryExpression("+", root, nodes[i]);
|
|
}
|
|
}
|
|
|
|
path.replaceWith(root);
|
|
},
|
|
},
|
|
};
|
|
}
|