diff --git a/lib/6to5/generators/expressions.js b/lib/6to5/generators/expressions.js index 0008cb194b..b74612d07c 100644 --- a/lib/6to5/generators/expressions.js +++ b/lib/6to5/generators/expressions.js @@ -111,5 +111,12 @@ exports.TemplateElement = function (node, print) { }; exports.TemplateLiteral = function (node, print) { - throw new Error("TemplateLiteral"); + this.push("`"); + + var self = this; + _.each(expr.quasis, function (quasi) { + + }); + + this.push("`"); };