24 lines
314 B
Plaintext
24 lines
314 B
Plaintext
#group expression/list
|
|
|
|
#golden list format into singleline should not keep spacing
|
|
foo =
|
|
[ 1
|
|
, 2
|
|
, 3
|
|
, 4
|
|
, 5
|
|
]
|
|
#expected
|
|
foo = [1, 2, 3, 4, 5]
|
|
|
|
#golden singleline list with comment
|
|
foo = [1 {- a -}, {- b -} 2, {- c -} 3, 4, 5]
|
|
#expected
|
|
foo =
|
|
[ 1 {- a -}
|
|
, {- b -} 2
|
|
, {- c -} 3
|
|
, 4
|
|
, 5
|
|
]
|