fix formatting

This commit is contained in:
Hiroyuki Ikegami
2013-03-19 02:05:06 +09:00
committed by Pavel V. Talanov
parent 8c66f744b4
commit a5b571f91c
2 changed files with 4 additions and 4 deletions
@@ -103,8 +103,8 @@ public open class StatementVisitor(converter: Converter): ElementVisitor(convert
if (condition == null) if (condition == null)
LiteralExpression("true") LiteralExpression("true")
else else
getConverter().expressionToExpression(condition) getConverter().expressionToExpression(condition),
, Block(arrayListOf(getConverter().statementToStatement(body), Block(arrayListOf(getConverter().statementToStatement(body),
Block(arrayListOf(getConverter().statementToStatement(update)), false)), false))) Block(arrayListOf(getConverter().statementToStatement(update)), false)), false)))
myResult = Block(forStatements, false) myResult = Block(forStatements, false)
} }