fmt: fix module docs generation (#9810)

pull/9820/head weekly.2021.16
Lukas Neubert 2021-04-20 03:54:08 +02:00 committed by GitHub
parent 4a1f75c964
commit fe88a4460b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -1951,6 +1951,9 @@ fn split_up_infix(infix_str string, ignore_paren bool) ([]string, []int) {
fn (mut f Fmt) write_splitted_infix(conditions []string, penalties []int, ignore_paren bool) {
for i, cnd in conditions {
c := cnd.trim_space()
if c.len == 0 {
continue
}
if f.line_len + c.len < fmt.max_len[penalties[i]] {
if (i > 0 && i < conditions.len) || (ignore_paren && i == 0 && c.len > 5 && c[3] == `(`) {
f.write(' ')