blob: 464b05c94da1e7611c0e73772d3d1fc9829c287d [file] [log] [blame]
==> formatter.braces.blocks = same.line
==> formatter.indent.blocks = true
==== while-simple
while (a==100)
{
a = 100;
}
==
while (a == 100) {
a = 100;
}
==== while-simple-no-block
while (a==100) a = 100;
==
while (a == 100) a = 100;
==== while-simple-simicolon
while (a==100) ;
==
while (a == 100);
==== while-break
while (true) break;
==
while (true) break;
==== while-contirnue
while (true) continue;
==
while (true) continue;
==== while-simple-no-simicolon
while (a==100) break
==
while (a == 100) break
==> formatter.braces.blocks = next.line
==> formatter.indent.blocks = false
==== while-no-indenting-next-line
while (b==100) {
b = 100;
}
==
while (b == 100)
{
b = 100;
}
==> formatter.braces.blocks = next.line.indented
==> formatter.indent.blocks = true
==== do-while-next-line-indented
while ( c==100 ) {
c = 100;
}
==
while (c == 100)
{
c = 100;
}
====