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.
1 parent 06e155e commit 68d4e94Copy full SHA for 68d4e94
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