Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't split input over multiple lines in debug view.
If the Input type is a slice, using `{:#?}` will insert newlines into the debug view. This messes up the output, which is counting charecters to fill a single line. Before: ``` > alt | [ Call @ 0..4, Ident > separated_foldl1 | [ Call @ 0..4, Ident > separated_foldl1 | [ Call @ 0..4, Ident > separated_foldl1 | [ Call @ 0..4, Ident > separated_foldl1 | [ Call @ 0..4, Ident > separated_foldl1 | [ Call @ 0..4, Ident > separated_foldl1 | [ Call @ 0..4, Ident > alt | [ Call @ 0..4, Ident > alt | [ Call @ 0..4, Ident > one_of | [ Call @ 0..4, Ident > any | [ Call @ 0..4, Ident ``` After: ``` > alt | [Call @ 0..4, Ident @ 5..19, > separated_foldl1 | [Call @ 0..4, Ident @ 5..19, > separated_foldl1 | [Call @ 0..4, Ident @ 5..19, > separated_foldl1 | [Call @ 0..4, Ident @ 5..19, > separated_foldl1 | [Call @ 0..4, Ident @ 5..19, > separated_foldl1 | [Call @ 0..4, Ident @ 5..19, > separated_foldl1 | [Call @ 0..4, Ident @ 5..19, > alt | [Call @ 0..4, Ident @ 5..19, > alt | [Call @ 0..4, Ident @ 5..19, > one_of | [Call @ 0..4, Ident @ 5..19, > any | [Call @ 0..4, Ident @ 5..19, ```
- Loading branch information