use this.space() instead of manually pushing
This commit is contained in:
parent
9db43ca7a9
commit
737abca3a9
@ -33,13 +33,13 @@ export function ForStatement(node, print) {
|
|||||||
this.push(";");
|
this.push(";");
|
||||||
|
|
||||||
if (node.test) {
|
if (node.test) {
|
||||||
this.push(" ");
|
this.space();
|
||||||
print.plain(node.test);
|
print.plain(node.test);
|
||||||
}
|
}
|
||||||
this.push(";");
|
this.push(";");
|
||||||
|
|
||||||
if (node.update) {
|
if (node.update) {
|
||||||
this.push(" ");
|
this.space();
|
||||||
print.plain(node.update);
|
print.plain(node.update);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user