use crate::prelude::*;
use biome_css_syntax::CssParameterList;
#[derive(Debug, Clone, Default)]
pub(crate) struct FormatCssParameterList;
impl FormatRule<CssParameterList> for FormatCssParameterList {
type Context = CssFormatContext;
fn fmt(&self, node: &CssParameterList, f: &mut CssFormatter) -> FormatResult<()> {
// Using `join_with` instead of `join_nodes_with_soft_line` to avoid
// preserving empty lines from the input source. See the comment in
// [FormatCssSelectorList] for more information.
let separator = soft_line_break_or_space();
let mut joiner = f.join_with(&separator);
for formatted in node.format_separated(",") {
joiner.entry(&formatted);
}
joiner.finish()
}
}