tweak beautify output (#5044)

This commit is contained in:
Alex Lam S.L
2021-07-03 16:10:39 +01:00
committed by GitHub
parent 1b745494ce
commit 668f96623c
2 changed files with 9 additions and 12 deletions

View File

@@ -795,9 +795,9 @@ issue_1656: {
beautify: true,
}
input: {
for(var a=0;;);
for (var a=0;;);
}
expect_exact: "for (;;) ;"
expect_exact: "for (;;);"
}
issue_1709: {
@@ -1110,7 +1110,7 @@ issue_1838: {
}
expect_exact: [
"function f() {",
" for (a; c; ) ;",
" for (a; c; );",
"}",
]
}