w0nder1ng
w0nder1ng
Clang also includes the target triple and installed directory (it's probably easier to just use `which gleam`). Maybe the output could look something like this? ``` $ gleam version gleam...
It could differentiate between a *-musl and *-gnu build, for example. The point of the subcommand (as I see it) would be to provide as much build information as possible,...
Again, I'm not sure where to add tests for fixes.
One thing that I wasn't sure how to handle is cases where there is control flow between the binding and the loop. ```python def f(early_return): result = [] if early_return:...
I've modified the code to preserve comments and not leave a newline when removing the for loop. The tests seem to be failing because the fix is now gated behind...
How should I deal with the existing test case?
I changed the diagnostic message, does the new one make more sense? Also, do you know why the tests aren't running?
The issue was that having no comments inside the for loop caused an empty insert, and that made a debug assert panic. The reason I didn't catch it before was...