We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9c31279 + 68d4e94 commit 5259780Copy full SHA for 5259780
src/org/mozilla/javascript/ast/DoLoop.java
@@ -100,6 +100,7 @@ public void setWhilePosition(int whilePosition) {
100
@Override
101
public String toSource(int depth) {
102
StringBuilder sb = new StringBuilder();
103
+ sb.append(makeIndent(depth));
104
sb.append("do ");
105
sb.append(body.toSource(depth).trim());
106
sb.append(" while (");
0 commit comments