Add definition of full expression#2605
Conversation
|
Thanks for your pull request, @andralex! Bugzilla referencesYour PR doesn't reference any Bugzilla issue. If your PR contains non-trivial changes, please reference a Bugzilla issue or create a manual changelog. |
|
Urgh. Is there a way to see a diff with wraparound enabled? |
|
It's quite difficult to review lines that are this long. |
sigh
|
Thanks. |
M-x fill-paragraph, amend, force-push In situations where newlines do not show up in rendered text, I found that adding them at sentence breaks makes sense for version controlled text (diffs are good), and it's not unlike how statements are generally one per line in programs. |
|
@CyberShadow I'm experimenting with Visual Studio Code... |
|
@WalterBright done |
|
|
|
"This" being what? |
|
The whitespace checker. |
|
@thewilsonator I guess it could fix the error itself. I introduced that because I was using the online editor. BTW I see a bunch of errors in magic.d when looking at the doc builter log http://dtest.dlang.io/results/e63eaaa2e744e490663fb29307ffb6ff65b803de/b435eade3ae96f349e71710e47a353608fff6a8b/build.log @CyberShadow could they be fixed? |
Yes it should.
Yes I do that all the time, the whitespace checker is a PITA.
They look almost like the ones I had in #2453 (comment) (see the force pushes just below). |
I think the authors of the relevant code are no longer maintaining it (DDox), so someone else would need to adopt / look into it. In any case, those errors are "benign", and indicate that the tool just failed to grok the syntax of that file. |
Well, actually the errors are coming from libdparse trying to parse newer code from Phobos for Ddoc (<-not the c here) as we have to parse the AST again to be able to rewrite the unittests, so even if we drop Ddox, this would still be there. See also: https://github.com/dlang/dlang.org/blob/master/ddoc/source/assert_writeln_magic.d In theory, upgrading libdparse should do the trick, but last time I did I ran into issues: #2551 |
Thanks for the correction, I did mix that up. To be fair, libdparse is also no longer maintained by its original author, as with DDox. |
cc @WalterBright