-
-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Few parser fixes #158
Few parser fixes #158
Conversation
Pretty formating of arrayCurrently if some structures including array have check to see if their content printed on the same line overflows a specific count. This works well (see const x = [1, 1, 0, 0, 1, 0, 1, ... *etc* ] as it breaks the max-line width threshold it is pretty printed as const x = [
1,
1,
0,
0,
1,
0,
1,
... *etc*
] I wonder if in this case it could be alternatively done in half-way manner, where the items are distributed? const x = [
1, 1, 0, 0, ...
1, 0, 1, 0, ...
... *etc*
] |
Help @addisoncrump @jasikpark. Not sure why it is now requiring
It was working yesterday (maybe a change in 1.79 that has just come through, not sure though) and not sure whether changing the CI |
You seem to have run into this: rust-fuzz/cargo-fuzz#355 I'm surprised that hasn't already been fixed... I bumped the upstream issue. |
Need to look into this fuzzing issue before merge. Understand why broken, but not sure why now? There hasn't been an update to |
Installing from the GitHub repository works? ( |
Are the issues linked resolved? You put "for" after "fix", so they didn't autoclose 😉 |
ForLoopStatementInitialiser
module_roundtrip_naive
#161parser/examples/code_blocks_to_script.rs
and.github/workflows/performance-and-size.yml