pub fn fold_stmt_with<U, F>(
    folder: &mut F,
    node: StmtWith<U>
) -> Result<StmtWith<<F as Fold<U>>::TargetU>, <F as Fold<U>>::Error>where
    F: Fold<U> + ?Sized,