push newline after decorator when doing code gen - fixes #1713

This commit is contained in:
Sebastian McKenzie 2015-06-10 01:19:58 +01:00
parent 4061bea528
commit 947d3e262d

View File

@ -70,6 +70,7 @@ export function Super() {
export function Decorator(node, print) {
this.push("@");
print.plain(node.expression);
this.newline();
}
export function CallExpression(node, print) {