Issue 586: Add tests with keep_line_breaks true
(Currently) only testing for the indentation problem after a newline.
This commit is contained in:
parent
0c7c86f031
commit
f003239e13
|
@ -0,0 +1,7 @@
|
|||
void test()
|
||||
{
|
||||
return Struct(
|
||||
foo: field.foo,
|
||||
bar: field.bar,
|
||||
baz: field.baz);
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
--keep_line_breaks true
|
|
@ -0,0 +1,7 @@
|
|||
void test()
|
||||
{
|
||||
return Struct(
|
||||
foo: field.foo,
|
||||
bar: field.bar,
|
||||
baz: field.baz);
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
void test()
|
||||
{
|
||||
return Struct(
|
||||
foo: field.foo,
|
||||
bar: field.bar,
|
||||
baz: field.baz);
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
void test() {
|
||||
return Struct(
|
||||
foo: field.foo,
|
||||
bar: field.bar,
|
||||
baz: field.baz);
|
||||
}
|
Loading…
Reference in New Issue