use _push instead of push on template literals end
This commit is contained in:
parent
95ace3220d
commit
cfbaae456b
@ -10,7 +10,7 @@ exports.TemplateElement = function (node) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
exports.TemplateLiteral = function (node, print) {
|
exports.TemplateLiteral = function (node, print) {
|
||||||
this.push("`");
|
this._push("`");
|
||||||
|
|
||||||
var quasis = node.quasis;
|
var quasis = node.quasis;
|
||||||
var self = this;
|
var self = this;
|
||||||
@ -26,5 +26,5 @@ exports.TemplateLiteral = function (node, print) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
this.push("`");
|
this._push("`");
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user