add base for TemplateLiteral generator

This commit is contained in:
Sebastian McKenzie 2014-10-31 11:51:00 +11:00
parent 51f18a152e
commit daced12baa

View File

@ -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("`");
};