Merge "Fix extra newline after multiline select case bodies" into main

This commit is contained in:
Treehugger Robot 2024-06-13 23:34:05 +00:00 committed by Gerrit Code Review
commit a3684d5d61
2 changed files with 38 additions and 1 deletions

View file

@ -227,7 +227,7 @@ func (p *printer) printSelect(s *Select) {
} else { } else {
p.printExpression(c.Value) p.printExpression(c.Value)
} }
p.printToken(",", c.Value.Pos()) p.printToken(",", c.Value.End())
} }
p.requestNewline() p.requestNewline()
p.unindent(s.RBracePos) p.unindent(s.RBracePos)

View file

@ -696,6 +696,43 @@ foo {
(default, default): "b", (default, default): "b",
}), }),
} }
`,
},
{
name: "Select with multiline inner expression",
input: `
foo {
cflags: [
"-DPRODUCT_COMPATIBLE_PROPERTY",
"-DRIL_SHLIB",
"-Wall",
"-Wextra",
"-Werror",
] + select(soong_config_variable("sim", "sim_count"), {
"2": [
"-DANDROID_MULTI_SIM",
"-DANDROID_SIM_COUNT_2",
],
default: [],
}),
}
`,
output: `
foo {
cflags: [
"-DPRODUCT_COMPATIBLE_PROPERTY",
"-DRIL_SHLIB",
"-Wall",
"-Werror",
"-Wextra",
] + select(soong_config_variable("sim", "sim_count"), {
"2": [
"-DANDROID_MULTI_SIM",
"-DANDROID_SIM_COUNT_2",
],
default: [],
}),
}
`, `,
}, },
} }