David Bar-On

Results 163 comments of David Bar-On

Yes, for the problem to happen a non-first line of a comment in the input should have a hard tab just before the `*`. In addition, in the output the...

Back-porting of PR #4658 (which I will submit soon) resolves the original issue of the second comment line indentation when it is preceded by a tab. > I haven't checked...

If I understood correctly what is meant by "multi-line, adjacent line comments", following is version One output (no tabs): ```rust fn main() { let x = 222; /* Second Comment...

Yes, this is the output of version one. In version Two the output is: ```rust fn main() { let x = 222; /* Second Comment line 1 * Second Comment...

Submitted PR #5480 with a suggested fix for this issue. In version Two it indents the multiline comments according to the first line.

> Will you still be available to address any review items on your open PRs and help get them over the finish line? Yes, I have the time. Actually, as...

The issue is caused because original code snippet is used, since the macro code cannot be parsed properly: a `,` is missing after the `$d` in `println!("{}", $d s)`. Submitted...

Oops! You are right. It is a while since I evaluated the root case .... Sorry for that. The real issue is that **rusfmt** doesn't know to distinguish between a...

I have a proposed fix witch assumes that the issue is more general and that **any declaration inside an interface can not shadow file-level declaration**, not only function declaration. However,...