add base for TemplateLiteral generator
This commit is contained in:
parent
51f18a152e
commit
daced12baa
@ -111,5 +111,12 @@ exports.TemplateElement = function (node, print) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
exports.TemplateLiteral = function (node, print) {
|
exports.TemplateLiteral = function (node, print) {
|
||||||
throw new Error("TemplateLiteral");
|
this.push("`");
|
||||||
|
|
||||||
|
var self = this;
|
||||||
|
_.each(expr.quasis, function (quasi) {
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
this.push("`");
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user