another merge

This commit is contained in:
Folkert 2021-02-23 18:34:08 +01:00
parent 9189e3a461
commit 9ce39cd633
7 changed files with 267 additions and 106 deletions

View file

@ -441,10 +441,10 @@ pub enum If<'a> {
IndentCondition(Row, Col),
IndentIf(Row, Col),
IndentThen(Row, Col),
IndentElse(Row, Col),
PatternAlignment(u16, Row, Col),
IndentThenToken(Row, Col),
IndentElseToken(Row, Col),
IndentThenBranch(Row, Col),
IndentElseBranch(Row, Col),
}
#[derive(Debug, Clone, PartialEq, Eq)]
@ -1546,10 +1546,11 @@ macro_rules! collection_trailing_sep_e {
and!(
$crate::parser::trailing_sep_by0(
$delimiter,
$crate::blankspace::space0_around_e(
$crate::blankspace::space0_around_ee(
$elem,
$min_indent,
$space_problem,
$indent_problem,
$indent_problem
)
),