We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54c3741 commit 7b89bc9Copy full SHA for 7b89bc9
librubyfmt/src/parser_state.rs
@@ -936,15 +936,6 @@ impl<'src> ParserState<'src> {
936
}
937
938
939
- pub(crate) fn render_with_blank_state<F>(ps: &mut ParserState<'src>, f: F) -> ParserState<'src>
940
- where
941
- F: FnOnce(&mut ParserState<'src>),
942
- {
943
- let mut next_ps = ParserState::new_with_reset_indentation(ps);
944
- f(&mut next_ps);
945
- next_ps
946
- }
947
-
948
/// Format a conditional modifier expression (e.g., `x if y` or `x unless y`).
949
pub(crate) fn conditional_layout_of<FP, FS>(
950
&mut self,
0 commit comments